-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update golangci-lint action to go through all dirs if no working dire…
…ctory set
- Loading branch information
Showing
2 changed files
with
37 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,24 +91,51 @@ jobs: | |
- '!nix-darwin-shell-hook.sh' | ||
- '!LICENSE' | ||
- '!.github/**' | ||
golangci: | ||
# Golangci-lint needs path to each module to run in monorepo, | ||
# so we resolve the modules first | ||
resolve-modules: | ||
name: Resolve Modules for GolangCI Lint | ||
# We don't directly merge dependabot PRs, so let's not waste the resources | ||
if: ${{ (github.event_name == 'pull_request' || github.event_name == 'schedule') && github.actor != 'dependabot[bot]' }} | ||
needs: [filter, run-frequency] | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-modules.outputs.matrix }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Set Modules for GolangCI Lint | ||
id: set-modules | ||
if: ${{ needs.filter.outputs.should-run-golangci == 'true' }} | ||
run: | | ||
PATHS_TO_GO_MOD=$(find . -type f -name go.mod | awk -F'/go.mod' '{if ($1 == ".") print "./"; else print $1}') | ||
PATHS_TO_GO_MOD_JSON=$(echo "$PATHS_TO_GO_MOD" | jq -R -s -c 'split("\n")[:-1]') | ||
echo "matrix=${PATHS_TO_GO_MOD_JSON}" >> $GITHUB_OUTPUT | ||
golangci: | ||
name: lint | ||
# We don't directly merge dependabot PRs, so let's not waste the resources | ||
if: ${{ (github.event_name == 'pull_request' || github.event_name == 'schedule') && github.actor != 'dependabot[bot]' }} | ||
needs: [filter, run-frequency, resolve-modules] | ||
permissions: | ||
# For golangci-lint-actions to annotate code in the PR. | ||
checks: write | ||
contents: read | ||
# For golangci-lint-action's `only-new-issues` option. | ||
pull-requests: read | ||
runs-on: ubuntu-24.04-8cores-32GB-ARM | ||
needs: [filter, run-frequency] | ||
strategy: | ||
matrix: | ||
modules: ${{fromJson(needs.resolve-modules.outputs.matrix)}} | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Golang Lint | ||
uses: ./.github/actions/golangci-lint | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Golang Lint (${{ matrix.modules }}) | ||
if: ${{ needs.filter.outputs.should-run-golangci == 'true' }} | ||
uses: ./.github/actions/golangci-lint | ||
with: | ||
go-directory: ${{ matrix.modules }} | ||
- name: Notify Slack | ||
if: ${{ failure() && needs.run-frequency.outputs.one-per-day-frequency == 'true' }} | ||
uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001 # v1.25.0 | ||
|