Improve CI to make it work again #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Rust linting | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/*.yml | |
- '**/*.rs' | |
workflow_dispatch: | |
jobs: | |
clippy-linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
components: clippy | |
override: true | |
- name: Clippy check | |
env: | |
RUSTFLAGS: --deny warnings | |
run: | | |
time cargo clippy --locked --all-targets --no-default-features | |
time cargo clippy --locked --all-targets --all-features |