name: Clippy
on:
jobs:
build:
strategy:
matrix:
target:
runs-on: ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
override: true
- name: Run clippy
run: make lint