From 179e2924c2b4670ac30d6a47ccf630ee4b3662a8 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Fri, 27 Mar 2020 00:16:57 +0100 Subject: [PATCH] add clippy checks to ci --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) 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