LOLBAS/.github/workflows/yamllint-compare.yml
Filipe Spencer Lopes 0da2e5e687 also run on push
2021-03-09 15:25:35 +01:00

17 lines
428 B
YAML

name: 'Yamllint GitHub Actions'
on:
- push
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Yamllint'
uses: karancode/yamllint-github-action@master
with:
yamllint_file_or_dir: '.'
yamllint_strict: false
yamllint_comment: false
yamllint_config_filepath: '.yamllint'