Skip to content

Commit e095b36

Browse files
authored
CI: experimental (#364)
* CI: experimental * update
1 parent 17f471f commit e095b36

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ concurrency:
1212
jobs:
1313
test:
1414
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
15+
continue-on-error: ${{ matrix.experimental }}
1516
runs-on: ${{ matrix.os }}
1617
strategy:
1718
fail-fast: false
@@ -20,19 +21,23 @@ jobs:
2021
- '1.6' # latest LTS
2122
- '1'
2223
- '~1.10.0-0' # upcoming julia version, next `rc`
24+
experimental:
25+
- false
2326
os: [ubuntu-latest]
2427
arch: [x64]
2528
include: # spare windows/macos CI credits
2629
- os: windows-latest
30+
experimental: false
2731
version: '1'
2832
arch: x64
2933
- os: macOS-latest
34+
experimental: false
3035
version: '1'
3136
arch: x64
3237
- os: ubuntu-latest
38+
experimental: true
3339
version: 'nightly'
3440
arch: x64
35-
allow_failure: true # `nightly` often breaks
3641

3742
steps:
3843
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)