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