mirror of
https://gitlab.com/veloren/veloren.git
synced 2025-07-25 21:02:31 +00:00
5 lines
389 B
Bash
Executable File
5 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
time cargo clippy --all-targets --locked --features="bin_compression,bin_csv,bin_graphviz,bin_bot,asset_tweak" -- -D warnings &&
|
|
# 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 |