diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-17 12:58:26 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-17 12:58:26 +0900 |
| commit | b2c37cbc1ce7f6638d7b57376719f2e0ba2d53ca (patch) | |
| tree | e17e406d6ed1457a84e5ad8f11ff7639e75f259f | |
| parent | 22811834abe3603e28128a17ac004b1aeea3d651 (diff) | |
| download | zgjq-b2c37cbc1ce7f6638d7b57376719f2e0ba2d53ca.tar.gz zgjq-b2c37cbc1ce7f6638d7b57376719f2e0ba2d53ca.tar.zst zgjq-b2c37cbc1ce7f6638d7b57376719f2e0ba2d53ca.zip | |
add justfile
| -rw-r--r-- | justfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..859ad6c --- /dev/null +++ b/justfile @@ -0,0 +1,11 @@ +help: + @just -l + +build: fmt + @zig build + +test: fmt + @zig test src/root.zig + +fmt: + @zig fmt . |
