diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index 2bd3525..0000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: ansible-lint - -on: [push] - -jobs: - build: - runs-on: ubuntu-latest - name: ansible-lint - steps: - - uses: actions/checkout@master - - uses: actions/setup-python@v2 - - run: pip install ansible ansible-lint - - run: ansible-lint --version - - run: ansible-lint . diff --git a/.woodpecker/push.yaml b/.woodpecker/push.yaml new file mode 100644 index 0000000..930ba3e --- /dev/null +++ b/.woodpecker/push.yaml @@ -0,0 +1,10 @@ +when: + - event: push + +steps: + - name: lint + image: docker.io/libary/python:3-alpine + commands: + - pip install ansible ansible-lint + - ansible-lint --version + - ansible-lint . diff --git a/meta/main.yml b/meta/main.yml index 2b13546..2a278fc 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -1,7 +1,7 @@ galaxy_info: role_name: restic - author: angristan - description: Ansible role for Restic + author: jakew + description: Ansible role for Restic - forked from angristan/restic license: MIT min_ansible_version: "2.4"