Skip to content

Commit 0271562

Browse files
committed
Add self integrate workflow for linting
1 parent 6c5a1b3 commit 0271562

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Integrate"
2+
3+
on: # yamllint disable-line rule:truthy
4+
pull_request: null
5+
push:
6+
branches:
7+
- "main"
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: "Checkout"
14+
uses: "actions/checkout@v3"
15+
16+
- name: "Lint YAML files"
17+
uses: "ibiqlik/action-yamllint@v3.1"
18+
with:
19+
config_file: ".yamllint.yaml"
20+
file_or_dir: "."
21+
strict: true

0 commit comments

Comments
 (0)