File tree 1 file changed +26
-17
lines changed
1 file changed +26
-17
lines changed Original file line number Diff line number Diff line change @@ -19,39 +19,48 @@ permissions:
19
19
20
20
jobs :
21
21
test :
22
- runs-on : ${{ matrix.os }}
22
+ runs-on : ${{ matrix.runner. os }}
23
23
strategy :
24
24
matrix :
25
- version :
26
- - ' min' # minimum supported version
27
- - ' 1' # current stable version
28
- os :
29
- - ubuntu-latest
30
- arch :
31
- - x64
32
- num_threads :
33
- - 1
34
- - 2
35
- include :
25
+ runner :
26
+ # Current stable version
36
27
- version : ' 1'
37
28
os : ubuntu-latest
38
- arch : x86
29
+ arch : x64
30
+ num_threads : 2
31
+ # Minimum supported version
32
+ - version : ' min'
33
+ os : ubuntu-latest
34
+ arch : x64
39
35
num_threads : 2
36
+ # Single-threaded
37
+ - version : ' 1'
38
+ os : ubuntu-latest
39
+ arch : x64
40
+ num_threads : 1
41
+ # x86
42
+ - version : ' 1'
43
+ os : ubuntu-latest
44
+ arch : x64
45
+ num_threads : 2
46
+ # Windows
40
47
- version : ' 1'
41
48
os : windows-latest
42
49
arch : x64
43
50
num_threads : 2
51
+ # macOS
44
52
- version : ' 1'
45
53
os : macOS-latest
46
- arch : x64
54
+ arch : aarch64
47
55
num_threads : 2
56
+
48
57
steps :
49
58
- uses : actions/checkout@v4
50
59
51
60
- uses : julia-actions/setup-julia@v2
52
61
with :
53
- version : ${{ matrix.version }}
54
- arch : ${{ matrix.arch }}
62
+ version : ${{ matrix.runner. version }}
63
+ arch : ${{ matrix.runner. arch }}
55
64
56
65
- uses : julia-actions/cache@v2
57
66
60
69
- uses : julia-actions/julia-runtest@v1
61
70
env :
62
71
GROUP : All
63
- JULIA_NUM_THREADS : ${{ matrix.num_threads }}
72
+ JULIA_NUM_THREADS : ${{ matrix.runner. num_threads }}
64
73
65
74
- uses : julia-actions/julia-processcoverage@v1
66
75
You can’t perform that action at this time.
0 commit comments