Skip to content

Commit 62bbbde

Browse files
committed
CI: don't let Julia nightly break CI; consider it an early warning
1 parent 72aa00a commit 62bbbde

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/CI.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,35 @@ jobs:
1616
test:
1717
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
1818
runs-on: ${{ matrix.os }}
19+
continue-on-error: ${{ matrix.experimental }}
1920
strategy:
2021
fail-fast: false
2122
matrix:
2223
version:
2324
- "1.6" # LTS
2425
- "1.7"
2526
- "1" # Latest Release
26-
- nightly
2727
os:
2828
- ubuntu-latest
2929
- macOS-latest
3030
- windows-latest
3131
arch:
3232
- x64
3333
- x86
34+
experimental:
35+
- false
3436
exclude:
3537
# Test 32-bit only on Linux
3638
- os: macOS-latest
3739
arch: x86
3840
- os: windows-latest
3941
arch: x86
42+
include:
43+
- os: ubuntu-latest
44+
version: nightly
45+
arch: x64
46+
experimental: true
47+
4048
steps:
4149
- name: Avoid line ending issues on Windows
4250
run: git config --global core.autocrlf false

0 commit comments

Comments
 (0)