navidrome/lefthook.yml
2020-05-07 11:57:07 -04:00

17 lines
288 B
YAML

pre-push:
commands:
unit-tests:
tags: tests
run: go test ./...
lint:
tags: tests
run: golangci-lint run
pre-commit:
parallel: false
commands:
gofmt:
tags: style
glob: "*.go"
run: gofmt -w {staged_files}; git add {staged_files}