Include benchmarks in the CI clippy run (#12165)

Make sure the benchmarks don't go out of date and are nice.
This commit is contained in:
Stefan Holderbach 2024-03-11 23:20:22 +01:00 committed by GitHub
parent f3a4f10b46
commit 8a250d2e08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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