mirror of
https://github.com/notohh/rustlings.git
synced 2024-12-17 22:58:08 -05:00
13 lines
228 B
Bash
Executable file
13 lines
228 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
|