Skip to content

Commit

Permalink
update Github Actions (#34)
Browse files Browse the repository at this point in the history
* increment CI to test Julia 1.8
* update coverage endpoints
  • Loading branch information
vtjnash authored Mar 27, 2023
1 parent b52cea7 commit dfb2920
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
version:
- '1.0'
- '1.6'
- '1.7'
- '1.8'
- 'nightly'
os:
- ubuntu-latest
Expand All @@ -34,21 +34,20 @@ jobs:
os: macos-latest
arch: x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info
- uses: coverallsapp/github-action@master
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: lcov.info
file: lcov.info
flag-name: Julia ${{ join(matrix.*, ' - ') }}
parallel: true
finish:
Expand All @@ -57,7 +56,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

0 comments on commit dfb2920

Please sign in to comment.