Updating Woodpecker CI config to handle role installs
ci/woodpecker/push/woodpecker Pipeline was canceled

This commit is contained in:
2026-09-15 20:47:54 -04:00
parent 2d5e516ca6
commit 2438978296
+9 -4
View File
@@ -3,8 +3,13 @@ when:
branch: [main]
steps:
- name: linter
image: python:3.14-slim
- name: install-roles
image: ghcr.io/ansible/community-ansible-dev-tools:latest
commands:
- pip install --no-cache-dir ansible-lint
- ansible-lint --offline
- ansible-galaxy role install -r requirements.yml -p "$CI_WORKSPACE/roles"
- name: lint-ansible
image: ghcr.io/ansible/community-ansible-dev-tools:latest
commands:
- git config --global --add safe.directory "$CI_WORKSPACE"
- ansible-lint -v --offline