Skip to content

Commit 4517a19

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] new tool added: yamllint
1 parent bd327de commit 4517a19

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/yamllint.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: YAML lint
3+
4+
on: push # yamllint disable-line rule:truthy
5+
6+
jobs:
7+
lint:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: Install yamllint
13+
run: pip install yamllint
14+
15+
- name: Lint YAML files
16+
run: yamllint .

0 commit comments

Comments
 (0)