LOLBAS/.github/workflows/yaml-linting.yml

21 lines
398 B
YAML
Raw Normal View History

2021-03-09 15:06:22 +01:00
---
name: YAML Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
2021-03-09 14:16:42 +01:00
jobs:
2021-03-09 14:28:09 +01:00
lintFiles:
2021-03-09 15:06:22 +01:00
runs-on: ubuntu-latest
steps:
2022-09-10 22:42:26 +02:00
- uses: actions/checkout@v3
2022-09-10 22:38:40 +02:00
- name: Run yamllint
2022-09-10 23:06:21 +02:00
uses: reviewdog/action-yamllint@v1
2022-09-10 13:22:41 +02:00
with:
2022-09-10 23:06:21 +02:00
reporter: github-pr-review # Change reporter.
yamllint_flags: '--config-file .github/.yamllint'