mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2025-12-12 22:11:15 +00:00
8 lines
181 B
Bash
Executable file
8 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}
|