Skip to content

Commit

Permalink
Update coverage report and Coveralls config in main.yml
Browse files Browse the repository at this point in the history
Coverage report generation switched from codecov to lcov format. In the Coveralls config, the lcov path was updated and the 'continue-on-error' attribute was set to true to prevent workflow halting on errors. Removed reliance on parallel flag and run number as they are no longer required.
  • Loading branch information
Denis Smet committed Feb 10, 2024
1 parent 0af38fc commit a8597bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:
restore-keys: ${{ runner.os }}-lein-

- name: 🧪 Generate coverage report
run: lein cloverage --codecov
run: lein cloverage --lcov

- name: Coveralls
- name: 🧪 Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: ./target/coverage/lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./target/coverage/codecov.json
flag-name: run-${{ github.run_number }}
parallel: false
if: success()
continue-on-error: true


linters:
Expand Down

0 comments on commit a8597bc

Please sign in to comment.