mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-01 16:03:31 +02:00
10 lines
152 B
Bash
Executable File
10 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Error out if any command fails
|
|
set -e
|
|
|
|
cargo run -- dev check
|
|
typos
|
|
cargo outdated -w --exit-code 1
|
|
cargo test --workspace --all-targets
|