Skip to content

Commit

Permalink
Allow nightly to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesmoon committed Apr 7, 2024
1 parent 0bc6988 commit add9e19
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ on:
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
name: Julia ${{ matrix.version }} - ubuntu-latest - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: 'ubuntu-latest'
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
max-parallel: ${{ fromJSON(vars.MAX_PARALLEL || '1')}}
matrix:
version: ['1.6', '^1', 'nightly']
os:
- ubuntu-latest
version: ['1.6', '^1']
experimental: [false]
arch:
- x64
include:
- version: 'nightly'
experimental: true
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down

0 comments on commit add9e19

Please sign in to comment.