Skip to content

Commit 1c7c09d

Browse files
committed
Fix matrix (again)
1 parent a9910d1 commit 1c7c09d

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/CI.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,36 @@ jobs:
2121
runs-on: ${{ matrix.runner.os }}
2222
strategy:
2323
matrix:
24-
version:
25-
- 'min'
26-
- '1'
2724
num_threads:
2825
- 1
2926
- 2
3027
runner:
3128
- os: ubuntu-latest
3229
arch: x64
30+
version: '1'
31+
# x86
3332
- os: ubuntu-latest
3433
arch: x86
34+
version: '1'
35+
# Minimum supported version
36+
- os: ubuntu-latest
37+
arch: x64
38+
version: 'min'
39+
# Windows
3540
- os: windows-latest
3641
arch: x64
42+
version: '1'
43+
# macOS
3744
- os: macos-latest
3845
arch: aarch64
46+
version: '1'
3947

4048
steps:
4149
- uses: actions/checkout@v4
4250

4351
- uses: julia-actions/setup-julia@v2
4452
with:
45-
version: ${{ matrix.version }}
53+
version: ${{ matrix.runner.version }}
4654
arch: ${{ matrix.runner.arch }}
4755

4856
- uses: julia-actions/cache@v2

0 commit comments

Comments
 (0)