Extre CI flag to run clippy for wihtout all features enabled

This commit is contained in:
Philipp Hoenisch 2020-10-27 16:02:32 +11:00
parent 8811a0a205
commit 7f3aa644a0
No known key found for this signature in database
GPG Key ID: E5F8E74C672BC666

View File

@ -41,6 +41,9 @@ jobs:
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Run clippy all features
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
build_test: