9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
rustc --version
|
|
cargo check --all-targets --all-features --keep-going
|
|
cargo fmt --check
|
|
cargo clippy
|
|
cargo test
|