ci/cd
Some checks failed
CI/CD Pipeline / lint (push) Failing after 10s
CI/CD Pipeline / build (push) Has been skipped
CI/CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
sotos
2025-12-16 09:42:58 +01:00
parent cd28c0f648
commit 7576cdf0db

View File

@@ -15,8 +15,13 @@ jobs:
- name: Install linters - name: Install linters
run: | run: |
apk add --no-cache python3 py3-pip bash git apk add --no-cache python3 py3-venv bash git
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install yamllint ansible-lint pip install yamllint ansible-lint
yamllint .
ansible-lint infrastructure/playbooks
- name: YAML lint - name: YAML lint
run: yamllint . run: yamllint .