Skip to content

Commit

Permalink
Add clippy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasmohrin committed Oct 17, 2020
1 parent f057a21 commit 8a11532
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,21 @@ jobs:
command: fmt
args: --all -- --check

clippy:
name: Clippy linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

links:
name: markdown-link-check
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8a11532

Please sign in to comment.