19 lines
394 B
YAML
19 lines
394 B
YAML
---
|
|
name: 'Yamllint GitHub Actions'
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on: [push, pull_request
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: 'Yamllint'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v3
|
|
|
|
- name: 'Yamllint'
|
|
uses: actions/yamllint@v2
|
|
with:
|
|
yamllint_file_or_dir: '.'
|
|
yamllint_config_filepath: './.yamllint'
|