mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2026-01-16 04:14:30 +07: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}
|