Skip to content

Commit

Permalink
Update coveralls workflow (#12)
Browse files Browse the repository at this point in the history
* adapt parameter
* switch to coverallsapp/github-action@v2
  • Loading branch information
benegee authored Jul 17, 2024
1 parent 028c916 commit a8f03b7
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,23 @@ jobs:
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1

- name: Run tests
uses: julia-actions/julia-runtest@v1
with:
coverage: true
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4

- name: Process Julia coverage data
uses: julia-actions/julia-processcoverage@v1

- name: Upload coverage data (Codecov)
uses: codecov/codecov-action@v4
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
- uses: coverallsapp/github-action@master

- name: Upload coverage data (Coveralls)
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
file: ./lcov.info

0 comments on commit a8f03b7

Please sign in to comment.