Skip to content

Commit

Permalink
CI: experimental (#364)
Browse files Browse the repository at this point in the history
* CI: experimental

* update
  • Loading branch information
t-bltg committed Dec 22, 2023
1 parent 17f471f commit e095b36
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ concurrency:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
continue-on-error: ${{ matrix.experimental }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -20,19 +21,23 @@ jobs:
- '1.6' # latest LTS
- '1'
- '~1.10.0-0' # upcoming julia version, next `rc`
experimental:
- false
os: [ubuntu-latest]
arch: [x64]
include: # spare windows/macos CI credits
- os: windows-latest
experimental: false
version: '1'
arch: x64
- os: macOS-latest
experimental: false
version: '1'
arch: x64
- os: ubuntu-latest
experimental: true
version: 'nightly'
arch: x64
allow_failure: true # `nightly` often breaks

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit e095b36

Please sign in to comment.