Skip to content

Commit d11f75b

Browse files
committed
Allow failure on nightly CI
1 parent a127d0b commit d11f75b

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
@@ -14,17 +14,25 @@ jobs:
1414
test:
1515
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1616
runs-on: ${{ matrix.os }}
17+
continue-on-error: ${{ matrix.allow_failure }}
1718
strategy:
1819
fail-fast: false
1920
matrix:
2021
version:
2122
- '1.6'
22-
- '1.9'
23+
- '1'
2324
- 'nightly'
2425
os:
2526
- ubuntu-latest
2627
arch:
2728
- x64
29+
include:
30+
- version: '1.6'
31+
allow_failure: false
32+
- version: '1'
33+
allow_failure: false
34+
- version: 'nightly'
35+
allow_failure: true
2836
steps:
2937
- uses: actions/checkout@v4
3038
- uses: julia-actions/setup-julia@v1

0 commit comments

Comments
 (0)