From cf5169e6fd1f3518da2bad7caaf2096e3a527402 Mon Sep 17 00:00:00 2001 From: Nicholas Klugman <13633349+nicholaskl97@users.noreply.github.com> Date: Tue, 27 Feb 2024 15:03:31 -0500 Subject: [PATCH] Update CI.yml to not log failure on julia nightly as a failure Signed-off-by: Nicholas Klugman <13633349+nicholaskl97@users.noreply.github.com> --- .github/workflows/CI.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c940b20..436ecb4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,16 +19,23 @@ jobs: permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created actions: write contents: read + continue-on-error: ${{ matrix.allow_failure }} strategy: fail-fast: false matrix: version: - '1.10' - - 'nightly' os: - ubuntu-latest arch: - x64 + allow_failure: + - false + include: + - version: 'nightly' + os: ubuntu-latest + arch: x64 + allow_failure: true steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1