rsync/.github/workflows/yamllint.yml
L3D 47b0deaf81
All checks were successful
shellchecking ansible-docker.sh / build (push) Successful in 14s
Yamllint GitHub Actions / Yamllint (push) Successful in 38s
hadolint Dockerfile / build (push) Successful in 7s
repair yammlint
2023-05-11 23:44:48 +02:00

19 lines
399 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@master
with:
yamllint_file_or_dir: '.'
yamllint_config_filepath: './.yamllint'