1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-10-08 23:02:03 +02:00
Files
rustlings/release-hook.sh
2025-08-21 23:55:58 +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.88 dev check --require-solutions