Skip to content

Commit

Permalink
build: add justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhall88 committed Jun 20, 2024
1 parent f22fe8b commit 0764046
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
PROJECT := "psdm"

# run clippy to check for linting issues
lint:
cargo clippy --all-features --all-targets -- -D warnings

# run all tests
test:
cargo test -v --all-targets --no-fail-fast

# get coverage with tarpaulin
coverage:
cargo tarpaulin -t 300 -- --test-threads 1

0 comments on commit 0764046

Please sign in to comment.