Skip to content

Commit 526001d

Browse files
committed
CI
1 parent 58b0188 commit 526001d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.8'
19-
- '^1.9.0-0'
18+
- '1.10'
19+
- '1'
2020
os:
2121
- ubuntu-latest
2222
- macOS-latest
2323
# - windows-latest
2424
arch:
2525
- x64
2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828
- uses: julia-actions/setup-julia@v1
2929
with:
3030
version: ${{ matrix.version }}
3131
arch: ${{ matrix.arch }}
32-
- uses: actions/cache@v1
32+
- uses: actions/cache@v3
3333
env:
3434
cache-name: cache-artifacts
3535
with:
@@ -42,6 +42,8 @@ jobs:
4242
- uses: julia-actions/julia-buildpkg@v1
4343
- uses: julia-actions/julia-runtest@v1
4444
- uses: julia-actions/julia-processcoverage@v1
45-
- uses: codecov/codecov-action@v1
45+
- uses: codecov/codecov-action@v4
4646
with:
4747
file: lcov.info
48+
token: ${{ secrets.CODECOV_TOKEN }}
49+
fail_ci_if_error: false

0 commit comments

Comments
 (0)