Skip to content

Commit

Permalink
more coverages with distributed runtests
Browse files Browse the repository at this point in the history
  • Loading branch information
wookay committed Feb 18, 2022
1 parent e5cf9eb commit 86cb314
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.7.1]
julia-version: [1.7.2]
julia-arch: [x64]
os: [ubuntu-latest, macos-latest]
include:
Expand Down Expand Up @@ -67,6 +67,8 @@ jobs:
- uses: actions/checkout@master
- name: coverage
run: |
julia --project=. -e 'using Pkg; Pkg.test(coverage=true)'
julia --project=. -e 'using Pkg; Pkg.add("Coverage"); using Coverage; cov = Coverage.process_folder(); mkdir("coverage"); Coverage.LCOV.writefile("coverage/lcov.info", cov)'
julia --version
julia --project=. -e 'using Pkg; Pkg.test(coverage=true)'
JIVE_PROCS=auto julia --project=. -e 'using Pkg; Pkg.test(coverage=true)'
julia --project=. -e 'using Pkg; Pkg.add("Coverage"); using Coverage; cov = Coverage.process_folder(); mkdir("coverage"); Coverage.LCOV.writefile("coverage/lcov.info", cov)'
- uses: codecov/codecov-action@v1

0 comments on commit 86cb314

Please sign in to comment.