Skip to content

Commit 01a8642

Browse files
committed
CI: Lint the crate using --all-targets --all-features
We are not currently running the linter in CI, do so.
1 parent f44943d commit 01a8642

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/rust.yml

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
profile: minimal
1616
toolchain: nightly
1717
override: true
18+
- name: Install clippy
19+
run: rustup component add clippy
1820
- name: Running benchmarks
1921
env:
2022
DO_BENCH: true
@@ -27,6 +29,10 @@ jobs:
2729
env:
2830
DO_FMT: true
2931
run: ./contrib/test.sh
32+
- name: Running linter
33+
env:
34+
DO_LINT: true
35+
run: ./contrib/test.sh
3036

3137
Int-tests:
3238
name: Integration tests

contrib/test.sh

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ fi
3333
# Defaults / sanity checks
3434
cargo test
3535

36+
if [ "$DO_LINT" = true ]; then
37+
cargo +nightly clippy --all-targets --all-features -- -D warnings
38+
fi
39+
3640
if [ "$DO_FEATURE_MATRIX" = true ]
3741
then
3842
# All features

0 commit comments

Comments
 (0)