2021-09-02 01:44:09 +02:00
|
|
|
---
|
|
|
|
name: 'Yamllint GitHub Actions'
|
|
|
|
|
|
|
|
# yamllint disable-line rule:truthy
|
2022-04-05 23:29:12 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: '*'
|
|
|
|
pull_request:
|
|
|
|
branches: '*'
|
2021-09-02 01:44:09 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
yamllint:
|
|
|
|
name: 'Yamllint'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-07 22:38:53 +02:00
|
|
|
- name: 'checkout git repo'
|
2023-10-05 22:27:53 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-04-07 22:38:53 +02:00
|
|
|
|
2021-09-02 01:44:09 +02:00
|
|
|
- name: 'Yamllint'
|
2023-10-05 22:27:59 +02:00
|
|
|
uses: karancode/yamllint-github-action@v2.1.1
|
2021-09-02 01:44:09 +02:00
|
|
|
with:
|
|
|
|
yamllint_file_or_dir: '.'
|
|
|
|
yamllint_config_filepath: './.yamllint'
|