summaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint.yml
blob: a52b79ed77ec7efee25b1112a28a197a2325051f (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 --no-deps