1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools/check-md: implement -hide-warnings, use it to reduce noisiness of the output on the CI

This commit is contained in:
Delyan Angelov
2021-01-10 15:58:45 +02:00
parent 722a603222
commit d0690fca1e
3 changed files with 61 additions and 21 deletions

View File

@@ -13,4 +13,6 @@ jobs:
- name: Build V
run: make
- name: Check markdown line length & code examples
run: ./v run cmd/tools/check-md.v -all
run: ./v run cmd/tools/check-md.v -hide-warnings -all
## NB: -hide-warnings is used here, so that the output is less noisy,
## thus real errors are easier to spot.