From 1fc7ee7f9eafdbe391753313330547672adc4700 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 10 Apr 2023 20:28:57 +0000 Subject: [PATCH] CI: Run tests and clippy lints against 1.60.0 criterion 0.4 now has an MSRV of 1.59 due to its dependencies, and pprof has an MSRV of 1.60 due to its dependencies. This is a follow-on to str4d/fpe@0c53a915e70697ff6294d5adcd74d965ad5e7181. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4582065..f8ebffd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.57.0 + toolchain: 1.60.0 override: true - name: Run tests uses: actions-rs/cargo@v1 @@ -45,20 +45,20 @@ jobs: args: --verbose clippy-test: - name: Clippy (1.57.0) + name: Clippy (1.60.0) timeout-minutes: 30 runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.57.0 + toolchain: 1.60.0 components: clippy override: true - name: Run clippy uses: actions-rs/clippy-check@v1 with: - name: Clippy (1.57.0) + name: Clippy (1.60.0) token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --all-targets -- -D warnings