mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 17:39:09 +00:00
16 lines
290 B
YAML
16 lines
290 B
YAML
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
format:
|
|
glob: "*.go"
|
|
run: test -z "$(gofmt -l {staged_files})"
|
|
vet:
|
|
glob: "*.go"
|
|
run: go vet ./...
|
|
lint:
|
|
glob: "*.go"
|
|
run: golangci-lint run ./...
|
|
test:
|
|
glob: "*.go"
|
|
run: go test ./...
|