From bbdb3a94f5bc83a120ab51bfa334ea13a6963939 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 26 Feb 2023 19:37:53 -0800 Subject: [PATCH] Raise minimum tested compiler to 1.59 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7af592b..64fb47e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.56.0] + rust: [nightly, beta, stable, 1.59.0, 1.56.0] timeout-minutes: 45 steps: - uses: actions/checkout@v3 @@ -34,7 +34,9 @@ jobs: - name: Enable type layout randomization run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV if: matrix.rust == 'nightly' + - run: cargo check - run: cargo test --workspace + if: matrix.rust != '1.56.0' minimal: name: Minimal versions