generated from okp4/template-rust
-
Notifications
You must be signed in to change notification settings - Fork 21
406 lines (343 loc) · 11.4 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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
name: Lint
on:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-commits:
runs-on: ubuntu-22.04
if: github.actor != 'dependabot[bot]'
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check commits
uses: wagoid/commitlint-github-action@v5
lint-markdown:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Lint markdown files
uses: avto-dev/[email protected]
with:
args: "**/*.md"
ignore: "CHANGELOG.md docs/**/*.md"
lint-yaml:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Lint yaml files
uses: ibiqlik/[email protected]
lint-cargo-toml:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Find changed rust Cargo files
id: changed-rust-cargo
uses: tj-actions/[email protected]
with:
files: |
Cargo.toml
- name: Setup rust
if: steps.changed-rust-cargo.outputs.any_changed == 'true'
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo-toml-lint
if: steps.changed-rust-cargo.outputs.any_changed == 'true'
run: |
cargo install --force cargo-toml-lint
- name: Lint Cargo.toml file
if: steps.changed-rust-cargo.outputs.any_changed == 'true'
run: |
cargo-toml-lint Cargo.toml
lint-cargo-makefile:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Find changed Cargo makefile
id: changed-cargo-makefile
uses: tj-actions/[email protected]
with:
files: |
Makefile.toml
- name: Install cargo make
if: steps.changed-cargo-makefile.outputs.any_changed == 'true'
uses: davidB/rust-cargo-make@v1
- name: Lint Cargo.toml file
if: steps.changed-cargo-makefile.outputs.any_changed == 'true'
run: |
FAILED=0
for task in $(cargo make --list-all-steps | awk '{print $1;}' | sort | grep -v -- '---' ); do
if echo "$task" | grep '_' > /dev/null; then
>&2 echo "❌ $task - use kebab-case style for task names (e.g. 'my-task' instead of 'my_task')"
FAILED=1
else
echo "✅ $task"
fi
done
if [ "${FAILED}" = "1" ]; then
exit 1
fi
lint-rust:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Find changed rust files
id: changed-rust-files
uses: tj-actions/[email protected]
with:
files: |
**/*.rs
Cargo.lock
Cargo.toml
- name: Setup rust
if: steps.changed-rust-files.outputs.any_changed == 'true'
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
if: steps.changed-rust-files.outputs.any_changed == 'true'
uses: davidB/rust-cargo-make@v1
- name: Lint rust code
if: steps.changed-rust-files.outputs.any_changed == 'true'
run: |
cargo make lint-rust
lint-rust-format:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Check rust format
run: |
cargo make lint-rust-format
lint-toml:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Lint toml
run: |
cargo make lint-toml
lint-toml-format:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Find changed toml files
id: changed-toml-files
uses: tj-actions/[email protected]
with:
files: |
**/*.toml
- name: Cache cargo registry
if: steps.changed-toml-files.outputs.any_changed == 'true'
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Setup rust
if: steps.changed-toml-files.outputs.any_changed == 'true'
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
if: steps.changed-toml-files.outputs.any_changed == 'true'
uses: davidB/rust-cargo-make@v1
- name: Check toml files are formatted
if: steps.changed-toml-files.outputs.any_changed == 'true'
run: |
cargo make format-toml
if [[ $(git status -s | grep .toml) ]]; then
>&2 echo "❌ There is a diff between formatted files and source code"
>&2 git status
exit 1
fi
report-wasm-size:
runs-on: ubuntu-22.04
if: github.event_name == 'pull_request'
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Prepare size limit
run: |
cp .github/package.json package.json
- name: Report wasm size limit
uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.OKP4_TOKEN }}
check-contracts:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Check contracts
shell: bash
run: cargo make check-contracts
check-docs-updated:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Installing jsonschema2md
run: |
yarn global add @adobe/[email protected]
echo "$(yarn global bin)" >> $GITHUB_PATH
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.69
default: true
override: true
- name: Install cargo make
uses: davidB/rust-cargo-make@v1
- name: Generate schema
run: cargo make schema
- name: Generate documentations
run: cargo make docs-generate
- name: Verify changed docs files
uses: tj-actions/verify-changed-files@v14
id: verify-changed-docs-files
with:
files: |
docs
- name: Run step only when files change.
if: contains(steps.verify-changed-docs-files.outputs.changed_files, 'docs')
run: |
echo "❌ Documentation files has been updated."
echo " Changed files : ${{ steps.verify-changed-docs-files.outputs.changed_files }}"
echo "Please generate docs using \`cargo make docs-generate\` then commit this new documentation."
exit 1
lint-branch-name:
runs-on: ubuntu-22.04
if: github.actor != 'dependabot[bot]' && github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: Check branch name conventions
uses: AlbertHernandez/[email protected]
with:
branch_pattern: "feat|fix|build|ci|docs|style|refactor|perf|test|chore"
comment_for_invalid_branch_name: |
🙋 Oops! This branch name does not follow the naming convention.
<hr>
Please, see the following branch naming convention:
Branch naming convention | Purpose
------------------------ | -------
`feat/**` | A new feature
`fix/**` | A bug fix
`build/**` | Changes that affect the build system (npm, mavem, poetry)
`ci/**` | Changes to the CI configuration
`docs/**` | Documentation only changes
`style/**` | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
`refactor/**` | Code changes that neither fixe a bug nor adds a feature
`perf/**` | Code changes that improve performance
`test/**` | When adding tests or correcting existing tests
`chore/**` | Other changes that don't modify source
fail_if_invalid_branch_name: "true"
ignore_branch_pattern: "main"
- name: Close non-compliant branch
if: ${{ failure() }}
uses: codelytv/no-pull-requests@v1
with:
GITHUB_TOKEN: ${{ secrets.OKP4_TOKEN }}
message: 🙅 Closing the PR because it does not respect naming conventions. Edit the branch name and submit a new PR.
env:
GITHUB_TOKEN: ${{ secrets.OKP4_TOKEN }}