Skip to content

💚 Fix typo.

💚 Fix typo. #60

Workflow file for this run

name: Clippy
on:
pull_request:
paths:
- '.github/workflows/clippy.yml'
- 'src/**/*'
- 'tests/**/*'
- 'Cargo.toml'
push:
branches: [master]
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- stable
- nightly
steps:
- uses: actions/checkout@v4
- name: Setup toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Run clippy
run: |
cargo clippy \
--all-targets \
--all-features \
-- -D warnings