mirror of
https://github.com/golangci/golangci-lint-action
synced 2026-09-07 20:04:01 +00:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 'golangci-lint-action: start'
|
|
|
|
cd "${GITHUB_WORKSPACE}/${DIRECTORY}" || exit 1
|
|
|
|
# shellcheck disable=SC2086
|
|
golangci-lint run --out-format github-actions ${FLAGS}
|