summaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint.yml
blob: af34bb134aa9c30e9933e7ebd3c62c1cf39445b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
name: Lint
on: [push, pull_request]
jobs:
  all:
    runs-on: macOS-latest
    steps:
    - uses: hecrj/setup-rust-action@v1
      with:
        components: clippy
    - uses: actions/checkout@master
    - name: Check lints
      run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings