1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-04 23:27:43 +02:00
rustlings/release-hook.sh

17 lines
257 B
Bash
Raw Normal View History

2024-04-25 19:02:07 +02:00
#!/bin/bash
# Error out if any command fails
set -e
typos
2024-07-13 12:32:23 +02:00
cargo upgrades
# Similar to CI
cargo clippy -- --deny warnings
cargo fmt --all --check
2025-05-19 18:21:40 +02:00
cargo test --workspace
cargo dev check --require-solutions
2024-11-11 14:43:51 +01:00
# MSRV
2025-05-19 18:21:40 +02:00
cargo +1.87 dev check --require-solutions