From 31446915b2f9ebaa341a5de1459bc7f541cb70ac Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:39:57 +0100 Subject: [PATCH] Allow CI failure on nightly --- .github/workflows/CI.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c4f1fd39..eec873f3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,6 +12,7 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.allow_failure }} strategy: fail-fast: false matrix: @@ -25,6 +26,11 @@ jobs: # - windows-latest arch: - x64 + include: + - version: 'nightly' + allow_failure: true + - version: '^1.10.0-0' + allow_failure: false steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1