diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 605b0818c04..3d9f55691b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,10 @@ jobs: id: rustfmt uses: actions-rust-lang/rustfmt@v1 + clippy: + name: Clippy + uses: ./github/workflows/clippy.yml + ## Release tests: Execute on every run release-tests: name: Release Tests diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 1e6872bd69b..2f741d931a1 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -41,4 +41,4 @@ jobs: uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features + args: -p clarity -p libstackerdb -p pox-locking -p stacks-common --no-deps --tests --all-features -- -D warnings