diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2024-03-24 02:36:20 +0100 | 
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2024-03-24 02:36:20 +0100 | 
| commit | ef5239fff09622f50e3e227049f2e1ecf0129d63 (patch) | |
| tree | caefa148e29ae07d40b8908076f5e136059172e2 | |
| parent | 024fd561aa10eb6fe0843f3451f3d04a2b0effc5 (diff) | |
| download | wpa-psk-ef5239fff09622f50e3e227049f2e1ecf0129d63.tar | |
Add cargo-fmt to check script
| -rwxr-xr-x | script/check | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/script/check b/script/check index 6737278..9913d80 100755 --- a/script/check +++ b/script/check @@ -4,9 +4,11 @@ set -o errexit  set -o nounset  set -o xtrace +cargo fmt --all --check  cargo check --workspace --all-targets --all-features  cargo build --workspace --all-targets --all-features  cargo test --workspace --all-targets --all-features  cargo clippy --workspace --all-targets --all-features -- --deny warnings -cargo doc --all-features --no-deps --document-private-items +env RUSTDOCFLAGS="-Dwarnings" \ +  cargo doc --all-features --no-deps --document-private-items  cargo audit  |