···200200run:
201201 just build && {{bin}}/{{app}}-{{version}}-$(go env GOOS)-$(go env GOARCH)
202202203203+check:
204204+ just lint
205205+ just test
206206+203207lint:
204208 goimports -w {{pkg}}
205209 go vet ./{{pkg}}
206210 staticcheck ./{{pkg}}
211211+212212+test:
213213+ go test ./...
214214+215215+test-race:
216216+ go test -race ./...
207217208218bump new:
209219 #!/usr/bin/env bash