Update check-and-lint.yaml

This commit is contained in:
Thomas Schönauer
2022-11-03 19:40:02 +00:00
committed by GitHub
parent 0f0cbc1453
commit 2a11df40ee

View File

@@ -57,13 +57,13 @@ jobs:
toolchain: stable toolchain: stable
components: clippy components: clippy
override: true override: true
- uses: actions-rs/clippy-check@v1 - uses: actions-rs/cargo@v1.0.1
with: with:
token: ${{ secrets.GITHUB_TOKEN }} command: clippy
args: --all-targets --locked -- -D warnings args: --all-targets --locked -- -D warnings
name: Clippy Output name: Clippy Output
- uses: actions-rs/clippy-check@v1 - uses: actions-rs/cargo@v1.0.1
with: with:
token: ${{ secrets.GITHUB_TOKEN }} command: clippy
args: --all-targets --locked --all-features -- -D warnings args: --all-targets --locked --all-features -- -D warnings
name: Clippy (All features) Output name: Clippy (All features) Output