Skip to content

Commit

Permalink
ci: allow failures on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
cormullion committed Mar 7, 2024
1 parent 5fc7417 commit aa48f77
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,23 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version:
- "1.9"
- "1" # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia
- "nightly"
os:
- ubuntu-latest
- macos-latest
- windows-latest
julia-arch:
- x64
exclude:
- os: macOS-latest
julia-arch: x86

version: ['1.9', '1']
os: [ubuntu-latest, macOS-latest, windows-latest]
arch: [x64]
allow_failure: [false]
include:
- version: 'nightly'
os: ubuntu-latest
arch: x64
allow_failure: true
- version: 'nightly'
os: macOS-latest
arch: x64
allow_failure: true
- version: 'nightly'
os: windows-latest
arch: x64
allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
Expand Down

0 comments on commit aa48f77

Please sign in to comment.