You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
381 B
18 lines
381 B
pre-commit: |
|
cargo fmt -- --check |
|
cargo test -- --test-threads 1 |
|
cargo clippy -- -D clippy::all |
|
|
|
release: |
|
cargo build --release |
|
|
|
test: |
|
cargo test -- --test-threads 1 |
|
|
|
# Sadly, this misses coverage for those integrations tests that use |
|
# assert_cmd, as it does not follow forks |
|
coverage: |
|
cargo tarpaulin -o Html --ignore-tests -- --test-threads 1 |
|
|
|
doc: |
|
cargo doc -p lowcharts
|
|
|