diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..90928d3 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,10 @@ +--- +steps: + - name: 'Check the repository with ansible-lint' + image: 'python:bookworm' + when: + - event: 'manual' + - event: 'push' + commands: + - 'pip -q install ansible-lint' + - 'ansible-lint' diff --git a/collections/requirements.yml b/collections/requirements.yml new file mode 100644 index 0000000..4b4f011 --- /dev/null +++ b/collections/requirements.yml @@ -0,0 +1,4 @@ +--- +collections: + - name: 'ansible.posix' + version: '>=2.0.0'