-
Notifications
You must be signed in to change notification settings - Fork 2
304 lines (297 loc) · 9.6 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
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: ["admin", "content", "governor", "subject", "validator", "voucher"]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
id: git-diff-admin
with:
PATTERNS: |
admin/**/**.go
admin/go.mod
admin/go.sum
if: matrix.module == 'admin'
- 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-governor
with:
PATTERNS: |
governor/**/**.go
governor/go.mod
governor/go.sum
if: matrix.module == 'governor'
- uses: technote-space/get-diff-action@v6
id: git-diff-subject
with:
PATTERNS: |
subject/**/**.go
subject/go.mod
subject/go.sum
if: matrix.module == 'subject'
- 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: 'admin/go.mod'
if: steps.git-diff-admin.outputs.diff
- 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: 'governor/go.mod'
if: steps.git-diff-governor.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'subject/go.mod'
if: steps.git-diff-subject.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: "admin"
if: steps.git-diff-admin.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: "governor"
if: steps.git-diff-governor.outputs.diff
- uses: golangci/golangci-lint-action@v6
with:
working-directory: "subject"
if: steps.git-diff-subject.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: ["admin", "content", "governor", "subject", "validator", "voucher"]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
id: git-diff-admin
with:
PATTERNS: |
admin/**/**.proto
if: matrix.module == 'admin'
- 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-governor
with:
PATTERNS: |
governor/**/**.proto
if: matrix.module == 'governor'
- uses: technote-space/get-diff-action@v6
id: git-diff-subject
with:
PATTERNS: |
subject/**/**.proto
if: matrix.module == 'subject'
- 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-admin.outputs.diff ||
steps.git-diff-content.outputs.diff ||
steps.git-diff-governor.outputs.diff ||
steps.git-diff-subject.outputs.diff ||
steps.git-diff-validator.outputs.diff ||
steps.git-diff-voucher.outputs.diff
- uses: bufbuild/buf-lint-action@v1
with:
input: 'admin/proto'
if: steps.git-diff-admin.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: 'governor/proto'
if: steps.git-diff-governor.outputs.diff
- uses: bufbuild/buf-lint-action@v1
with:
input: 'subject/proto'
if: steps.git-diff-subject.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: ["admin", "content", "governor", "subject", "validator", "voucher"]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6
id: git-diff-admin
with:
PATTERNS: |
admin/**/**.proto
if: matrix.module == 'admin'
- 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-governor
with:
PATTERNS: |
governor/**/**.proto
if: matrix.module == 'governor'
- uses: technote-space/get-diff-action@v6
id: git-diff-subject
with:
PATTERNS: |
subject/**/**.proto
if: matrix.module == 'subject'
- 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: 'admin/go.mod'
if: steps.git-diff-admin.outputs.diff
- 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: 'governor/go.mod'
if: steps.git-diff-governor.outputs.diff
- uses: actions/setup-go@v5
with:
go-version-file: 'subject/go.mod'
if: steps.git-diff-subject.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-admin.outputs.diff ||
steps.git-diff-content.outputs.diff ||
steps.git-diff-governor.outputs.diff ||
steps.git-diff-subject.outputs.diff ||
steps.git-diff-validator.outputs.diff ||
steps.git-diff-voucher.outputs.diff
- name: Run protolint
run: protolint ./admin
if: steps.git-diff-admin.outputs.diff
- name: Run protolint
run: protolint ./content
if: steps.git-diff-content.outputs.diff
- name: Run protolint
run: protolint ./governor
if: steps.git-diff-governor.outputs.diff
- name: Run protolint
run: protolint ./subject
if: steps.git-diff-subject.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