update cicd
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:48:22 +01:00
parent 77066def09
commit 12b254b20b

View File

@@ -13,15 +13,22 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install linters system-wide
run: apk add --no-cache py3-yamllint py3-ansible-lint git bash
- name: Install linters
run: |
apk add --no-cache python3 py3-pip bash git
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install yamllint ansible-lint
- name: Run linters
run: |
. venv/bin/activate
yamllint .
ansible-lint ansible/playbooks
build:
runs-on: docker
container: