From 856e2994722e2e7f67b47d55b8e673ddabcebe83 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 27 Feb 2026 07:13:17 +0000 Subject: feat: Initial commit --- justfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 justfile (limited to 'justfile') 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 . -- cgit v1.2.3