Skip to content

Commit 370de4e

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

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/yamllint.yml

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

0 commit comments

Comments
 (0)