File tree 1 file changed +21
-3
lines changed
1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,30 @@ jobs:
15
15
test :
16
16
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
17
17
runs-on : ${{ matrix.os }}
18
+ timeout-minutes : 180
19
+ permissions : # needed to allow julia-actions/cache to proactively delete old caches that it has created
20
+ actions : write
21
+ contents : read
18
22
strategy :
19
23
fail-fast : false
20
24
matrix :
21
- version : ['1.10', '1.11']
22
- os : ['ubuntu-latest', 'macOS-latest']
23
- arch : [x64]
25
+ version :
26
+ - " 1"
27
+ - lts
28
+ os :
29
+ - macOS-latest
30
+ - macOS-13
31
+ - ubuntu-latest
32
+ arch :
33
+ - aarch64
34
+ - x64
35
+ exclude :
36
+ - os : macOS-latest
37
+ arch : x64
38
+ - os : macOS-13
39
+ arch : aarch64
40
+ - os : ubuntu-latest
41
+ arch : aarch64
24
42
steps :
25
43
- uses : actions/checkout@v4
26
44
- uses : julia-actions/setup-julia@v2
You can’t perform that action at this time.
0 commit comments