From 9cd38916d8b021fd1e48aab00c894eb372a81a05 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 10 Aug 2023 09:05:53 -0400 Subject: [PATCH] ci: add clippy to build workflow. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83f8ee8..f20185d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,5 +20,8 @@ jobs: - name: cargo build (debug; default features) run: cargo build --all-targets + - name: cargo clippy + run: cargo clippy --all-targets -- -D warnings + - name: cargo test (debug; default features) run: cargo test