mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
* Better script names and grammar fix. * Bump Rust * Enforce more lints. * Improve few struct definitions by removing box. * Many minor implementation improvements.
12 lines
252 B
Bash
Executable File
12 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Exit when any command fails.
|
|
set -e
|
|
|
|
# Run lints.
|
|
cargo fmt --all -- --check # run `cargo fmt` to auto-correct format.
|
|
cargo clippy
|
|
|
|
# Run tests.
|
|
RUST_MIN_STACK=33554432 cargo test --release test_examples_irgen_small --nocapture
|