mirror of
https://github.com/roles-ansible/ansible_role_etebase.git
synced 2024-08-16 10:19:52 +02:00
24 lines
463 B
YAML
24 lines
463 B
YAML
|
---
|
||
|
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@v3
|
||
|
|
||
|
- name: 'Yamllint'
|
||
|
uses: karancode/yamllint-github-action@v2.0.0
|
||
|
with:
|
||
|
yamllint_file_or_dir: '.'
|
||
|
yamllint_config_filepath: './.yamllint'
|