Skip to content

Commit

Permalink
ci: drop the coveralls.io check
Browse files Browse the repository at this point in the history
This will keep failing and the coverage report is posted publicly, so
just drop the dependency.
  • Loading branch information
andyholmes committed Apr 16, 2024
1 parent 37203b4 commit f89fd43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,7 @@ jobs:
test-coverage: true
lcov-include: '${{ github.workspace }}/src/*'

- name: Report
continue-on-error: true
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.test.outputs.coverage }}

- name: Coverage
- name: Coverage Report
continue-on-error: true
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,20 +213,13 @@ jobs:
name: Tests (${{ matrix.compiler }}, ${{ matrix.suite }})
path: ${{ steps.test.outputs.log }}

- name: Coverage (html)
- name: Coverage Report
if: ${{ matrix.compiler == 'gcc' && matrix.suite == 'test' }}
uses: actions/upload-artifact@v4
with:
name: Tests (coverage)
path: ${{ steps.test.outputs.coverage-html }}

- name: Coverage (coveralls.io)
if: ${{ matrix.compiler == 'gcc' && matrix.suite == 'test' }}
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.test.outputs.coverage }}

installed-tests:
name: Tests (Installed)
needs: [pre-test]
Expand Down

0 comments on commit f89fd43

Please sign in to comment.