rsync/.github/workflows/yamllint.yaml
Workflow config file is invalid. Please check your config file: yaml: line 4: did not find expected ',' or ']'
L3D 15cee3df48
Some checks failed
shellchecking ansible-docker.sh / build (push) Failing after 3s
hadolint Dockerfile / build (push) Failing after 2s
Update actions
2023-05-11 23:10:54 +02:00

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