summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-08-02 09:03:40 +0200
committerMatthias Beyer <mail@beyermatthias.de>2022-08-02 09:03:40 +0200
commit336a34e52c8b0889180c865b29c89420cd1788dc (patch)
tree0adf06917cbf93e32980e716eccf8d1867f67061
parentaf537b7c8533460e97bab686744057455663058a (diff)
Run clippy only on MSRV
This patch reverts the matrix for the clippy job to only run clippy on our MSRV instead of stable, beta and nightly. The recurring issue with this was that lints started failing in PRs that couldn't have been fixed in master yet, because master was never tested with a clippy that new (in case of nightly). 1.56.1 is good enough for now. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml8
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index fa9cd47..e069266 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -111,12 +111,6 @@ jobs:
needs: [check]
name: Clippy
runs-on: ubuntu-latest
- strategy:
- matrix:
- rust:
- - stable
- - beta
- - nightly
steps:
- name: Checkout sources
uses: actions/checkout@v3.0.2
@@ -124,7 +118,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
- toolchain: ${{ matrix.rust }}
+ toolchain: 1.56.1
override: true
components: clippy