Skip to content

Commit

Permalink
Merge pull request #6 from AtelierArith/support-julia-1.6
Browse files Browse the repository at this point in the history
Allow Julia nightly version to fail
  • Loading branch information
terasakisatoshi authored Jan 28, 2024
2 parents 7dc2990 + 8980342 commit 246cb9e
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 @@ -16,17 +16,20 @@ jobs:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
continue-on-error: ${{ matrix.experimental }}
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
strategy:
fail-fast: false
matrix:
version:
- '1.6' # LTS
- '1.10'
- '1'
- 'nightly'
version: ['1.6', '1.10', '1']
experimental: [false]
include:
- version: 'nightly'
os: ubuntu-latest
arch: x64
experimental: true
os:
- ubuntu-latest
arch:
Expand Down

0 comments on commit 246cb9e

Please sign in to comment.