mirror of
https://github.com/chenasraf/sofmani.git
synced 2026-05-17 17:28:04 +00:00
17 lines
290 B
YAML
17 lines
290 B
YAML
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
fmt:
|
|
glob: "*.go"
|
|
run: go fmt ./...
|
|
stage_fixed: true
|
|
vet:
|
|
glob: "*.go"
|
|
run: go vet ./...
|
|
lint:
|
|
glob: "*.go"
|
|
run: golangci-lint run ./...
|
|
test:
|
|
glob: "*.go"
|
|
run: go test -v ./...
|