mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-24 08:42:26 +02:00
17 lines
285 B
Bash
Executable File
17 lines
285 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 --all-targets
|
|
cargo run -- dev check --require-solutions
|
|
|
|
# MSRV
|
|
cargo +1.80 run -- dev check --require-solutions
|