diff options
Diffstat (limited to 'release-hook.sh')
| -rwxr-xr-x | release-hook.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/release-hook.sh b/release-hook.sh index 052832f..f021f19 100755 --- a/release-hook.sh +++ b/release-hook.sh @@ -3,7 +3,12 @@ # Error out if any command fails set -e -cargo run -- dev check typos -cargo outdated -w --exit-code 1 +cargo upgrades + +# Similar to CI +cargo clippy -- --deny warnings +cargo fmt --all --check +rustfmt --check --edition 2021 solutions/**/*.rs cargo test --workspace --all-targets +cargo run -- dev check --require-solutions |
