aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: 42a333d7c4071d836789aba8b881d3c90f8a6b5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
TEMPDIR := `mktemp -d`

build:
	CGO=0 go build -o bumpver

install:
    install bumpver $HOME/.local/bin

test:
    golangci-lint run
    go test -v -coverprofile={{ TEMPDIR }}/testcover.out ./...
    go tool cover -func={{ TEMPDIR }}/testcover.out