diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 30c003cf7e..6febdbb9ea 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -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: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 254057d4d1..91aa5c496e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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]