mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-26 17:03:09 +00:00
6 lines
140 B
Bash
6 lines
140 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cargo fmt --all --check
|
|
cargo clippy --workspace --all-targets -- -D warnings
|
|
cargo test --workspace
|