Skip to content

Commit dc59097

Browse files
authored
Update CI.yml
1 parent 9bbd316 commit dc59097

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

.github/workflows/CI.yml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,34 @@ jobs:
1414
matrix:
1515
version:
1616
- '1'
17-
- 'nightly'
1817
os:
19-
- macOS-13
20-
- macOS-12
2118
- ubuntu-latest
2219
- windows-latest
20+
- macOS-13 # intel
21+
- macOS-14 # arm
2322
arch:
2423
- x64
24+
- aarch64
25+
exclude:
26+
- os: ubuntu-latest
27+
arch: aarch64
28+
- os: windows-latest
29+
arch: aarch64
30+
- os: macOS-13
31+
arch: x86
32+
- os: macOS-13
33+
arch: aarch64
34+
- os: macOS-14
35+
arch: x86
36+
- os: macOS-14
37+
arch: x64
2538
steps:
2639
- uses: actions/checkout@v4
2740
- uses: julia-actions/setup-julia@v1
2841
with:
2942
version: ${{ matrix.version }}
3043
arch: ${{ matrix.arch }}
31-
- uses: actions/cache@v3
44+
- uses: actions/cache@v4
3245
env:
3346
cache-name: cache-artifacts
3447
with:
@@ -41,6 +54,8 @@ jobs:
4154
- uses: julia-actions/julia-buildpkg@v1
4255
- uses: julia-actions/julia-runtest@v1
4356
- uses: julia-actions/julia-processcoverage@v1
44-
- uses: codecov/codecov-action@v3
57+
- uses: codecov/codecov-action@v4
4558
with:
4659
file: lcov.info
60+
token: ${{ secrets.CODECOV_TOKEN }}
61+

0 commit comments

Comments
 (0)