1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-05-31 23:09:44 +02:00
rustlings/release-hook.sh
2025-05-19 18:21:40 +02:00

17 lines
257 B
Bash
Executable File

#!/bin/bash
# Error out if any command fails
set -e
typos
cargo upgrades
# Similar to CI
cargo clippy -- --deny warnings
cargo fmt --all --check
cargo test --workspace
cargo dev check --require-solutions
# MSRV
cargo +1.87 dev check --require-solutions