mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
14 lines
231 B
YAML
14 lines
231 B
YAML
pre-push:
|
|
commands:
|
|
unit-tests:
|
|
tags: tests
|
|
run: go test ./...
|
|
|
|
pre-commit:
|
|
parallel: false
|
|
commands:
|
|
gofmt:
|
|
tags: style
|
|
glob: "*.go"
|
|
run: gofmt -w {staged_files}; git add {staged_files}
|