Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
Try diff versions of Julia in CI
  • Loading branch information
askprash committed Nov 20, 2023
1 parent be1874e commit 9447c46
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- version: '1.8'
os: ubuntu-latest
arch: x64
version:
- '1.8'
- '1'
os:
- ubuntu-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: actions/cache@v1
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
Expand All @@ -36,6 +39,6 @@ jobs:
with:
depwarn: error
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info

0 comments on commit 9447c46

Please sign in to comment.