From 8a250d2e08c3ea5788940064ed94fed734f430aa Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Mon, 11 Mar 2024 23:20:22 +0100 Subject: [PATCH] Include benchmarks in the CI clippy run (#12165) Make sure the benchmarks don't go out of date and are nice. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ae04c940c..e6cb72e5da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,9 @@ jobs: - name: Clippy of tests run: cargo clippy --tests --workspace ${{ matrix.flags }} --exclude nu_plugin_* -- -D warnings + - name: Clippy of benchmarks + run: cargo clippy --benches --workspace ${{ matrix.flags }} --exclude nu_plugin_* -- -D warnings + tests: strategy: fail-fast: true