From 3680ae53157dfc20628145ac78eaba3e07c964c6 Mon Sep 17 00:00:00 2001 From: James Sanders Date: Mon, 13 Apr 2026 09:31:35 -0700 Subject: [PATCH] chore: Move cloudcov to coveralls --- .github/workflows/cicd.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index cf845a9..99e175d 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -48,6 +48,9 @@ jobs: - uses: actions/checkout@v4 - run: pip install -U tox poetry - run: tox -e coverage - - uses: "codecov/codecov-action@v3" + - uses: coverallsapp/github-action@v2 with: - fail_ci_if_error: true + github-token: ${{ secrets.GITHUB_TOKEN }} + file: coverage.xml + format: cobertura + fail-on-error: true