-
Notifications
You must be signed in to change notification settings - Fork 2
222 lines (215 loc) · 6.88 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
name: Lint
# **What it does**: Runs go linter when go files have been modified
# and proto linters when proto files have been modified.
#
# **Why we have it**: Ensures all go files and proto files are
# properly formatted according to lint configuration files.
#
# **What does it impact**: Code quality.
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
golangci:
runs-on: ubuntu-latest
permissions:
pull-requests: read # for technote-space/get-diff-action to get git reference
strategy:
matrix:
module: ["content", "geonode", "validator", "voucher"]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
id: git-diff-content
with:
PATTERNS: |
content/**/**.go
content/go.mod
content/go.sum
if: matrix.module == 'content'
- uses: technote-space/get-diff-action@v6
id: git-diff-geonode
with:
PATTERNS: |
geonode/**/**.go
geonode/go.mod
geonode/go.sum
if: matrix.module == 'geonode'
- uses: technote-space/get-diff-action@v6
id: git-diff-voucher
with:
PATTERNS: |
voucher/**/**.go
voucher/go.mod
voucher/go.sum
if: matrix.module == 'voucher'
- uses: technote-space/get-diff-action@v6
id: git-diff-validator
with:
PATTERNS: |
validator/**/**.go
validator/go.mod
validator/go.sum
if: matrix.module == 'validator'
- uses: actions/setup-go@v5
with:
go-version-file: 'content/go.mod'
if: steps.git-diff-content.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'geonode/go.mod'
if: steps.git-diff-geonode.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'validator/go.mod'
if: steps.git-diff-validator.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'voucher/go.mod'
if: steps.git-diff-voucher.outputs.diff
- uses: golangci/golangci-lint-action@v6
with:
working-directory: "content"
if: steps.git-diff-content.outputs.diff
- uses: golangci/golangci-lint-action@v6
with:
working-directory: "geonode"
if: steps.git-diff-geonode.outputs.diff
- uses: golangci/golangci-lint-action@v6
with:
working-directory: "validator"
if: steps.git-diff-validator.outputs.diff
- uses: golangci/golangci-lint-action@v6
with:
working-directory: "voucher"
if: steps.git-diff-voucher.outputs.diff
buf-lint:
runs-on: ubuntu-latest
permissions:
pull-requests: read # for technote-space/get-diff-action to get git reference
strategy:
matrix:
module: ["content", "geonode", "validator", "voucher"]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
id: git-diff-content
with:
PATTERNS: |
content/**/**.proto
if: matrix.module == 'content'
- uses: technote-space/get-diff-action@v6
id: git-diff-geonode
with:
PATTERNS: |
geonode/**/**.proto
if: matrix.module == 'geonode'
- uses: technote-space/get-diff-action@v6
id: git-diff-validator
with:
PATTERNS: |
validator/**/**.proto
if: matrix.module == 'validator'
- uses: technote-space/get-diff-action@v6
id: git-diff-voucher
with:
PATTERNS: |
voucher/**/**.proto
if: matrix.module == 'voucher'
- uses: bufbuild/buf-setup-action@v1
if: |
steps.git-diff-content.outputs.diff ||
steps.git-diff-geonode.outputs.diff ||
steps.git-diff-validator.outputs.diff ||
steps.git-diff-voucher.outputs.diff
- uses: bufbuild/buf-lint-action@v1
with:
input: 'content/proto'
if: steps.git-diff-content.outputs.diff
- uses: bufbuild/buf-lint-action@v1
with:
input: 'geonode/proto'
if: steps.git-diff-geonode.outputs.diff
- uses: bufbuild/buf-lint-action@v1
with:
input: 'validator/proto'
if: steps.git-diff-validator.outputs.diff
- uses: bufbuild/buf-lint-action@v1
with:
input: 'voucher/proto'
if: steps.git-diff-voucher.outputs.diff
protolint:
runs-on: ubuntu-latest
permissions:
pull-requests: read # for technote-space/get-diff-action to get git reference
strategy:
matrix:
module: ["content", "geonode", "validator", "voucher"]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
id: git-diff-content
with:
PATTERNS: |
content/**/**.proto
if: matrix.module == 'content'
- uses: technote-space/get-diff-action@v6
id: git-diff-geonode
with:
PATTERNS: |
geonode/**/**.proto
if: matrix.module == 'geonode'
- uses: technote-space/get-diff-action@v6
id: git-diff-validator
with:
PATTERNS: |
validator/**/**.proto
if: matrix.module == 'validator'
- uses: technote-space/get-diff-action@v6
id: git-diff-voucher
with:
PATTERNS: |
voucher/**/**.proto
if: matrix.module == 'voucher'
- uses: actions/setup-go@v5
with:
go-version-file: 'content/go.mod'
if: steps.git-diff-content.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'geonode/go.mod'
if: steps.git-diff-geonode.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'validator/go.mod'
if: steps.git-diff-validator.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'voucher/go.mod'
if: steps.git-diff-voucher.outputs.diff
- name: Install protolint
run: go install github.com/yoheimuta/protolint/cmd/protolint@latest
if: |
steps.git-diff-content.outputs.diff ||
steps.git-diff-geonode.outputs.diff ||
steps.git-diff-validator.outputs.diff ||
steps.git-diff-voucher.outputs.diff
- name: Run protolint
run: protolint ./content
if: steps.git-diff-content.outputs.diff
- name: Run protolint
run: protolint ./geonode
if: steps.git-diff-geonode.outputs.diff
- name: Run protolint
run: protolint ./validator
if: steps.git-diff-validator.outputs.diff
- name: Run protolint
run: protolint ./voucher
if: steps.git-diff-voucher.outputs.diff