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