summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-02-10 11:36:46 +0100
committerMatthias Beyer <mail@beyermatthias.de>2023-02-10 11:37:20 +0100
commit206c9c672a673b7b15f421dfffbceaba67cf580e (patch)
tree3745b1621faf0fe83ed43d40188c5e953396a77f
parent460f77019e1adced2c78b57cb3bc99a5b5b5b402 (diff)
Fix: Let clippy also run on stable toolchain
We check this in the cron job, so we should also check this in the MSRV workflow. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index ccc8614..6140b68 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -92,13 +92,19 @@ jobs:
needs: [check]
name: Clippy
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ rust:
+ - 1.60.0
+ - stable
steps:
- name: Checkout sources
uses: actions/checkout@v3.3.0
- name: Install toolchain
- uses: dtolnay/rust-toolchain@1.60.0
+ uses: dtolnay/rust-toolchain@master
with:
+ toolchain: ${{ matrix.rust }}
components: clippy
- name: Run cargo clippy