File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -14,21 +14,34 @@ jobs:
14
14
matrix :
15
15
version :
16
16
- ' 1'
17
- - ' nightly'
18
17
os :
19
- - macOS-13
20
- - macOS-12
21
18
- ubuntu-latest
22
19
- windows-latest
20
+ - macOS-13 # intel
21
+ - macOS-14 # arm
23
22
arch :
24
23
- 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
25
38
steps :
26
39
- uses : actions/checkout@v4
27
40
- uses : julia-actions/setup-julia@v1
28
41
with :
29
42
version : ${{ matrix.version }}
30
43
arch : ${{ matrix.arch }}
31
- - uses : actions/cache@v3
44
+ - uses : actions/cache@v4
32
45
env :
33
46
cache-name : cache-artifacts
34
47
with :
41
54
- uses : julia-actions/julia-buildpkg@v1
42
55
- uses : julia-actions/julia-runtest@v1
43
56
- uses : julia-actions/julia-processcoverage@v1
44
- - uses : codecov/codecov-action@v3
57
+ - uses : codecov/codecov-action@v4
45
58
with :
46
59
file : lcov.info
60
+ token : ${{ secrets.CODECOV_TOKEN }}
61
+
You can’t perform that action at this time.
0 commit comments