Skip to content

Commit 0894eb8

Browse files
authored
Split nightly testing from rest of CI (#309)
* Split nightly testing from rest of CI * Single workflow allowing nightly to fail * Fix CI * Rename experimental into allow_failure
1 parent 559404d commit 0894eb8

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
test:
1414
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1515
runs-on: ${{ matrix.os }}
16+
continue-on-error: ${{ matrix.allow_failure }}
1617
strategy:
1718
fail-fast: false
1819
matrix:
@@ -26,6 +27,13 @@ jobs:
2627
- windows-latest
2728
arch:
2829
- x64
30+
include:
31+
- version: 'nightly'
32+
allow_failure: true
33+
- version: '1'
34+
allow_failure: false
35+
- version: '1.6'
36+
allow_failure: false
2937
steps:
3038
- uses: actions/checkout@v2
3139
- uses: julia-actions/setup-julia@v1

codecov.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)