diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbc1c510..aeb90827 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,3 +22,9 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --workspace -- --test-threads=1 + - name: Run clippy + - run: rustup component add clippy + - uses: actions-rs/clippy-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --all-features