From 5c506fe02ecb7a4e2efc049de13201d87067ba62 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 25 Feb 2024 08:31:55 -0800 Subject: [PATCH] ci: Add a CI test for increased MSRV due to nix Signed-off-by: John Nunley --- .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 723f1d72..16a64d20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: strategy: fail-fast: false matrix: - rust: ['1.63.0', 'stable', 'beta'] + rust: ['1.63.0', '1.69.0', 'stable', 'beta'] runs-on: 'ubuntu-latest' @@ -142,6 +142,7 @@ jobs: with: command: test args: --features "block_on executor signals" + if: ${{ matrix.rust != '1.63.0' }} - name: Run book tests uses: actions-rs/cargo@v1