From 70da9379846a969fbc95d2e9faa717cbf5efbe7b Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Tue, 6 Feb 2024 10:54:33 -0600 Subject: [PATCH] try `continue-on-error: true` --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4e9873..16c0ea0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,13 @@ jobs: build_and_test: name: Rust project - latest runs-on: ubuntu-latest + continue-on-error: true strategy: matrix: toolchain: - stable - beta - # - nightly + - nightly steps: - uses: actions/checkout@v3 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}