CI: use stable clippy

Using nightly one leads to having to resolve lints more frequently than rust releases, which is
getting inconvenient.

It also leads to a small compatibility issue with stable clippy: if we need to #[allow] a lint that
is only present in nightly clippy, then stable clippy complains about unknown ling in the `allow`.
pull/238/head
Matěj Laitl 2022-12-01 10:14:16 +01:00
parent eac6071d7a
commit 00c2b3c6a1
1 changed files with 13 additions and 2 deletions

View File

@ -47,7 +47,7 @@ jobs:
command: test
args: --features v6-test --verbose
fmt-and-clippy:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -56,12 +56,23 @@ jobs:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
components: rustfmt
- name: Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Clippy
uses: actions-rs/cargo@v1
with: