rsync/.github/workflows/yamllint.yml
Workflow config file is invalid. Please check your config file: yaml: line 4: did not find expected ',' or ']'
L3D dd3ead63b8
All checks were successful
hadolint Dockerfile / build (push) Successful in 7s
shellchecking ansible-docker.sh / build (push) Successful in 14s
rename action
2023-05-11 23:36:06 +02:00

19 lines
398 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.1.1
with:
yamllint_file_or_dir: '.'
yamllint_config_filepath: './.yamllint'