Files
rust-mal/.git_hooks_pre-commit-shadow
teo3300 83e45334a5 Adding tests
- functional tests
- more tests
- tests tests tests

Signed-off-by: teo3300 <matteo.rogora@live.it>
2023-11-26 19:48:54 +09:00

13 lines
192 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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