Skip to content

Commit 87677d0

Browse files
committed
Add yamllint GA
1 parent d9afe48 commit 87677d0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/yamllint.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Yamllint GitHub Actions'
2+
on:
3+
- pull_request
4+
jobs:
5+
yamllint:
6+
name: 'Yamllint'
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: 'Checkout'
10+
uses: actions/checkout@master
11+
- name: 'Yamllint'
12+
uses: karancode/yamllint-github-action@master
13+
with:
14+
yamllint_file_or_dir: 'librarylist.yaml'
15+
yamllint_strict: false
16+
yamllint_comment: true
17+
yamllint_config_filepath: 'yamllint-config.yml'
18+
env:
19+
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)