Skip to content

Replace actions-rs workflows with maintained alternatives #1

Replace actions-rs workflows with maintained alternatives

Replace actions-rs workflows with maintained alternatives #1

Workflow file for this run

name: Clippy Lint and Check
on: [pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
name: Install Rust Toolchain
with:
components: clippy
- uses: Swatinem/rust-cache@v2
name: Add caching
- name: Lint and Check codebase with Clippy
run: cargo clippy --all-features --verbose -- -D warnings