11 lines
145 B
Plaintext
11 lines
145 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -o errexit
|
||
|
|
set -o nounset
|
||
|
|
|
||
|
|
test -z "${DEBUG:-}" || {
|
||
|
|
set -x
|
||
|
|
}
|
||
|
|
|
||
|
|
_tools/bin/golangci-lint run --config .golangci.yaml
|