1
0
Fork 0
ansible_role_prometheus_pin.../.github/workflows/yamllint.yaml

24 lines
463 B
YAML
Raw Normal View History

2022-11-21 14:58:47 +01:00
---
name: 'Yamllint GitHub Actions'
# yamllint disable-line rule:truthy
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'checkout git repo'
uses: actions/checkout@v4
2022-11-21 14:58:47 +01:00
- name: 'Yamllint'
uses: karancode/yamllint-github-action@v2.1.1
2022-11-21 14:58:47 +01:00
with:
yamllint_file_or_dir: '.'
yamllint_config_filepath: './.yamllint'