Skip to content

Commit

Permalink
ci.yml: add beta version, split experimental versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaensel authored Aug 14, 2024
1 parent 99dde92 commit bd7971e
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,47 @@ on:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
continue-on-error: ${{ matrix.version == 'nightly'}}
continue-on-error: ${{ matrix.experimental }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
experimental:
- false
include:
- version: 'beta'
os: ubuntu-latest
arch: x64
experimental: true
- version: 'beta'
os: macOS-latest
arch: x64
experimental: true
- version: 'beta'
os: windows-latest
arch: x64
experimental: true
- version: 'nightly'
os: ubuntu-latest
arch: x64
experimental: true
- version: 'nightly'
os: macOS-latest
arch: x64
experimental: true
- version: 'nightly'
os: windows-latest
arch: x64
experimental: true
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
Expand Down

0 comments on commit bd7971e

Please sign in to comment.