From ecdd9412a817b3597a7c21010f91440e167f2873 Mon Sep 17 00:00:00 2001 From: Tomasz Pietrek Date: Sat, 4 May 2024 22:19:40 +0200 Subject: [PATCH] Do not run lint against sync client Signed-off-by: Tomasz Pietrek --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c95819c3..a33688a39 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -102,7 +102,7 @@ jobs: save-if: false # the linter only run checks but not builds, so we don't have the full build to be cached. - name: Run linter - run: cargo clippy --benches --tests --examples --all-features -- --deny clippy::all + run: cargo clippy --benches --tests --examples --all-features --workspace --exclude nats -- --deny clippy::all check_docs: name: check docs (ubuntu-latest / stable)