diff options
| author | Fuwn <[email protected]> | 2026-02-27 07:13:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-27 07:13:17 +0000 |
| commit | 856e2994722e2e7f67b47d55b8e673ddabcebe83 (patch) | |
| tree | 5a4e108384038eaa072d8e6c5f71ab68901fb431 /justfile | |
| download | kivia-856e2994722e2e7f67b47d55b8e673ddabcebe83.tar.xz kivia-856e2994722e2e7f67b47d55b8e673ddabcebe83.zip | |
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..e2f536b --- /dev/null +++ b/justfile @@ -0,0 +1,20 @@ +set shell := ["bash", "-eu", "-o", "pipefail", "-c"] + +build: + mkdir -p bin + go build -o ./bin/kivia . + +format: + iku -w . || go fmt ./... + +test: + go test ./... + +run *args: + go run . {{args}} + +self: + go run . --path ./... --ignore file=testdata + +install: + go install . |