aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-27 07:13:17 +0000
committerFuwn <[email protected]>2026-02-27 07:13:17 +0000
commit856e2994722e2e7f67b47d55b8e673ddabcebe83 (patch)
tree5a4e108384038eaa072d8e6c5f71ab68901fb431 /justfile
downloadkivia-main.tar.xz
kivia-main.zip
feat: Initial commitHEADmain
Diffstat (limited to 'justfile')
-rw-r--r--justfile20
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 .