Skip to content

Commit e7212a9

Browse files
test single-threading also
1 parent 190a6b6 commit e7212a9

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,25 @@ concurrency:
1717

1818
jobs:
1919
test:
20-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
20+
name: julia -t${{ matrix.threads}} - ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
2121
runs-on: ${{ matrix.os }}
2222
timeout-minutes: 30
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
version:
27-
- 'nightly'
28-
os:
29-
- ubuntu-latest
30-
- windows-latest
31-
arch:
32-
- x64
33-
- x86
34-
include:
35-
- os: macOS-latest
26+
threads: ['1', '4,4']
27+
version: [nightly]
28+
os: [ubuntu-latest, windows-latest, macOS-latest]
29+
arch: [x64, x86, aarch64]
30+
exclude:
31+
- os: ubuntu-latest
32+
arch: aarch64
33+
- os: windows-latest
3634
arch: aarch64
37-
version: 'nightly'
35+
- os: macOS-latest
36+
arch: x64
37+
- os: macOS-latest
38+
arch: x86
3839
steps:
3940
- uses: actions/checkout@v4
4041
- uses: julia-actions/setup-julia@v2
@@ -45,7 +46,7 @@ jobs:
4546
- uses: julia-actions/julia-runtest@v1
4647
env:
4748
JULIA_DISTRIBUTED_TESTING_STANDALONE: 1
48-
JULIA_NUM_THREADS: 4,4
49+
JULIA_NUM_THREADS: '${{ matrix.threads}}'
4950
- uses: julia-actions/julia-processcoverage@v1
5051
- uses: codecov/codecov-action@v5
5152
with:

0 commit comments

Comments
 (0)