ci/cd
Some checks failed
CI/CD Pipeline / lint (push) Failing after 25s
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:44:46 +01:00
parent 7576cdf0db
commit eb603ee508

View File

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