Skip to content

Commit

Permalink
Run tests on julia 1.10 with only 1 thread
Browse files Browse the repository at this point in the history
  • Loading branch information
fhagemann committed Dec 22, 2024
1 parent baf81e8 commit 9a21635
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: CI

env:
JULIA_NUM_THREADS: 4

on:
push:
branches:
Expand All @@ -28,28 +25,35 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
env:
JULIA_NUM_THREADS: ${{ matrix.threads }}
continue-on-error: ${{ matrix.version == 'pre' }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- '1'
- 'pre'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
threads:
- 4
include:
- version: 1
- version: '1.10'
os: ubuntu-latest
arch: x86
- version: 1
os: macOS-latest
arch: x64
- version: 1
os: windows-latest
threads: '1'
- version: pre
os: ubuntu-latest
arch: x64
threads: 4
- version: '1'
os: ubuntu-latest
arch: x86
threads: 4
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down

0 comments on commit 9a21635

Please sign in to comment.