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