From 1a04216c46f9f7832b650a313a00efa8942cca85 Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Thu, 11 Nov 2021 22:18:55 +1100 Subject: [PATCH] Run Clippy on docs builder --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68f7fc2d..9bed8b0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,10 +53,14 @@ jobs: toolchain: nightly profile: minimal override: true + components: clippy - name: Build documentation run: cd docs && make -j$(nproc) + - name: Check Clippy + run: cd docs && cargo clippy --all-targets -- -D warnings + examples: name: Examples runs-on: ubuntu-latest