-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thanks to @jcornaz
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
@_list: | ||
just --list --unsorted | ||
|
||
# Perform all verifications (compile, test, lint etc.) | ||
verify: test lint | ||
|
||
# Watch the source files and run `just verify` when sources change | ||
watch: | ||
cargo watch -- just verify | ||
|
||
# Run the tests | ||
test: | ||
cargo hack test --feature-powerset | ||
|
||
# Run the static code analysis | ||
lint: | ||
cargo fmt -- --check | ||
cargo hack clippy --feature-powerset --all-targets | ||
|
||
# Build the documentation | ||
doc *args: | ||
cargo doc --all-features --no-deps {{args}} | ||
|
||
# Open the documentation page | ||
doc-open: (doc "--open") | ||
|
||
# Clean up compilation output | ||
clean: | ||
rm -rf target | ||
rm -rf node_modules | ||
|
||
# Install cargo dev-tools used by the `verify` recipe (requires rustup to be already installed) | ||
install-dev-tools: | ||
rustup install stable | ||
rustup override set stable | ||
cargo install cargo-hack cargo-watch | ||
|
||
# Install a git hook to run tests before every commit | ||
install-git-hooks: | ||
echo '#!/usr/bin/env sh' > .git/hooks/pre-commit | ||
echo 'just verify' >> .git/hooks/pre-commit | ||
chmod +x .git/hooks/pre-commit |