workflow
Some checks failed
YAML Lint / yamllint (push) Failing after 6s

This commit is contained in:
sotos
2025-12-16 09:10:44 +01:00
parent a8542458a2
commit c51524531c
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
name: YAML Lint
on:
push:
branches: [ main, dev ]
pull_request:
jobs:
yamllint:
runs-on: docker
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install yamllint
run: |
apk add --no-cache python3 py3-pip
pip install --no-cache-dir yamllint
- name: Run yamllint
run: |
yamllint .

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"ansible.python.interpreterPath": "/opt/homebrew/bin/python3"
}