Skip to content

Commit 680e66a

Browse files
committed
Merge #313: chore(just): add a _default recipe
5a5747d chore(just): add a `_default` recipe (Luis Schwab) Pull request description: This PR adds a `_default` recipe at the top of the `justfile` so that running `just` will list the recipes instead of running the `build` recipe. ACKs for top commit: ValuedMammal: ACK 5a5747d oleonardolima: ACK 5a5747d 110CodingP: tACK [5a5747d](5a5747d) Tree-SHA512: 20b99e909af224508c45727e766a97ddd8b72be28ddde8eb20d84dfdbc55a8b9a8489078a305a705a60145d611e3ee4973284bbd4c56bc0dd998361cde83006b
2 parents 964d714 + 5a5747d commit 680e66a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

justfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ alias f := fmt
44
alias t := test
55
alias p := pre-push
66

7+
_default:
8+
@just --list
9+
710
# Build the project
811
build:
912
cargo build
@@ -26,4 +29,4 @@ test:
2629
cargo test --workspace --exclude 'example_*' --all-features
2730

2831
# Run pre-push suite: format, check, and test
29-
pre-push: fmt check test
32+
pre-push: fmt check test

0 commit comments

Comments
 (0)