diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index a103595a..a3c72984 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -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