From 3d353d39fa77123b4ffa7366e8739f784f04dea4 Mon Sep 17 00:00:00 2001 From: Diogenes Pelisson Date: Mon, 4 May 2020 18:54:03 -0300 Subject: [PATCH] ansible actions --- .github/workflows/ansible.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ansible.yml diff --git a/.github/workflows/ansible.yml b/.github/workflows/ansible.yml new file mode 100644 index 0000000..edcef52 --- /dev/null +++ b/.github/workflows/ansible.yml @@ -0,0 +1,22 @@ +name: Ansible + +on: [push, pull_request] + +jobs: + + linter: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Lint Ansible Playbook + uses: ansible/ansible-lint-action@master + + release: + needs: + - linter + runs-on: ubuntu-latest + steps: + - name: galaxy + uses: robertdebock/galaxy-action@1.0.3 + with: + galaxy_api_key: ${{ secrets.galaxy_api_key }} \ No newline at end of file