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