Skip to content

Commit c34dea5

Browse files
authored
allow nightly CI to fail (#287) [skip ci]
1 parent 799b290 commit c34dea5

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/ci.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,23 @@ jobs:
1111
test:
1212
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1313
runs-on: ${{ matrix.os }}
14+
continue-on-error: ${{ matrix.allow_failure }}
1415
strategy:
1516
fail-fast: false
1617
matrix:
1718
version:
1819
- '1.6'
1920
- '1.7'
21+
- '1.8'
2022
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
21-
- 'nightly'
22-
os:
23-
- ubuntu-latest
24-
arch:
25-
- x64
23+
os: [ubuntu-latest]
24+
arch: [x64]
25+
allow_failure: [false]
26+
include:
27+
- version: 'nightly'
28+
os: ubuntu-latest
29+
arch: x64
30+
allow_failure: true
2631
steps:
2732
- uses: actions/checkout@v2
2833
- uses: julia-actions/setup-julia@v1

0 commit comments

Comments
 (0)