2021-07-14 08:25:29 +00:00
|
|
|
#!/bin/bash
|
2021-07-17 19:53:32 +00:00
|
|
|
rm -r target/debug/incremental/* || echo "all good" # TMP FIX FOR 2021-03-22-nightly
|
2021-08-20 19:07:22 +00:00
|
|
|
time cargo clippy --all-targets --locked --features="bin_cmd_doc_gen,bin_compression,bin_csv,bin_graphviz,bin_bot,asset_tweak" -- -D warnings &&
|
2021-07-14 08:25:29 +00:00
|
|
|
# Ensure that the veloren-voxygen default-publish feature builds as it excludes some default features
|
|
|
|
time cargo clippy -p veloren-voxygen --locked --no-default-features --features="default-publish" -- -D warnings &&
|
|
|
|
time cargo fmt --all -- --check
|