From add9e19577ec6e8da96e7156f9ce8865d0bdf5e7 Mon Sep 17 00:00:00 2001 From: Philip Tellis Date: Sun, 7 Apr 2024 16:32:35 -0400 Subject: [PATCH] Allow nightly to fail --- .github/workflows/CI.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 74864d1..2b4168d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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