mirror of
https://github.com/teo3300/rust-mal.git
synced 2026-01-12 09:15:32 +01:00
- functional tests - more tests - tests tests tests Signed-off-by: teo3300 <matteo.rogora@live.it>
13 lines
192 B
Bash
Executable File
13 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
||
|
||
# Quit when first command fails
|
||
set -e
|
||
|
||
# format code in a consistent way
|
||
cargo fmt
|
||
|
||
# yeet on any clippy warning
|
||
cargo clippy -- -Dwarnings
|
||
|
||
# check test pass
|
||
cargo test |