File tree Expand file tree Collapse file tree 1 file changed +25
-16
lines changed
Expand file tree Collapse file tree 1 file changed +25
-16
lines changed Original file line number Diff line number Diff line change @@ -22,36 +22,45 @@ jobs:
2222 runs-on : ${{ matrix.os }}
2323 strategy :
2424 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
3627 - version : ' 1'
3728 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
3935 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
4047 - version : ' 1'
4148 os : windows-latest
4249 arch : x64
4350 num_threads : 2
51+ # macOS
4452 - version : ' 1'
4553 os : macOS-latest
46- arch : x64
54+ arch : aarch64
4755 num_threads : 2
56+
4857 steps :
4958 - uses : actions/checkout@v4
5059
5160 - uses : julia-actions/setup-julia@v2
5261 with :
53- version : ${{ matrix.version }}
54- arch : ${{ matrix.arch }}
62+ version : ${{ matrix.runner. version }}
63+ arch : ${{ matrix.runner. arch }}
5564
5665 - uses : julia-actions/cache@v2
5766
6069 - uses : julia-actions/julia-runtest@v1
6170 env :
6271 GROUP : All
63- JULIA_NUM_THREADS : ${{ matrix.num_threads }}
72+ JULIA_NUM_THREADS : ${{ matrix.runner. num_threads }}
6473
6574 - uses : julia-actions/julia-processcoverage@v1
6675
You can’t perform that action at this time.
0 commit comments