-
Notifications
You must be signed in to change notification settings - Fork 13
55 lines (51 loc) · 1.36 KB
/
ci-go-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This workflow will lint all Go projects in the repository
name: ci-go-lint
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- '**/*.go'
- '**/go.mod'
permissions:
contents: read
jobs:
get-dirs:
if: github.event_name == 'pull_request'
name: search
runs-on: ubuntu-latest
outputs:
dirs: ${{ steps.get-dirs.outputs.dirs }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Search for go.mod files
id: get-dirs
run: echo "dirs=$(find . -name 'go.mod' -exec dirname {} \; | sed 's|^\./||' | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT}
go-lint:
needs: get-dirs
if: github.event_name == 'pull_request'
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }}
defaults:
run:
working-directory: ${{ matrix.dir }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
cache-dependency-path: "${{ matrix.dir }}/go.sum"
go-version-file: "${{ matrix.dir }}/go.mod"
- name: Run Linter
uses: golangci/golangci-lint-action@v6
with:
working-directory: ${{ matrix.dir }}
version: latest
args: --timeout=10m