Skip to content

Commit 854efa2

Browse files
authored
Merge pull request #257 from JuliaDiff/gd/ci_badge
Allow CI failure on nightly
2 parents 5add288 + 3144691 commit 854efa2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
test:
1313
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1414
runs-on: ${{ matrix.os }}
15+
continue-on-error: ${{ matrix.allow_failure }}
1516
strategy:
1617
fail-fast: false
1718
matrix:
@@ -25,6 +26,11 @@ jobs:
2526
# - windows-latest
2627
arch:
2728
- x64
29+
include:
30+
- version: 'nightly'
31+
allow_failure: true
32+
- version: '^1.10.0-0'
33+
allow_failure: false
2834
steps:
2935
- uses: actions/checkout@v4
3036
- uses: julia-actions/setup-julia@v1

0 commit comments

Comments
 (0)