From d11f75ba72c6e36f3f4629e35ed793c1b594e999 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Thu, 28 Sep 2023 10:04:04 +0200 Subject: [PATCH] Allow failure on nightly CI --- .github/workflows/CI.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4704bd4..547407c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -14,17 +14,25 @@ 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: version: - '1.6' - - '1.9' + - '1' - 'nightly' os: - ubuntu-latest arch: - x64 + include: + - version: '1.6' + allow_failure: false + - version: '1' + allow_failure: false + - version: 'nightly' + allow_failure: true steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1