Skip to content

Commit

Permalink
chore: add lint to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Nov 5, 2021
1 parent b82fbf8 commit 04b0886
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ jobs:
override: true
- run: cargo fmt -- --check

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- run: cargo clippy --all-features

msrv:
name: MSRV
runs-on: ubuntu-latest
Expand Down

0 comments on commit 04b0886

Please sign in to comment.