aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: e2f536ba9f3545770778af538549078f20e50a61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 .