From 0504fcb86133c78a75560c907556f1d6031bdf23 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 17 Mar 2023 19:32:54 -0700 Subject: [PATCH] Raise minimum tested compiler to 1.56 --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66b119c..45b9931 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.36.0, 1.34.0, 1.31.0] + rust: [nightly, beta, stable, 1.56.0] timeout-minutes: 45 steps: - uses: actions/checkout@v3 @@ -26,10 +26,8 @@ jobs: with: toolchain: ${{matrix.rust}} - run: cargo test - if: matrix.rust != '1.31.0' && matrix.rust != '1.34.0' - run: cargo check --no-default-features - run: cargo check --no-default-features --features alloc - if: matrix.rust != '1.31.0' && matrix.rust != '1.34.0' clippy: name: Clippy