From 43ac1e3b5bcaa07e76d0f3867543819798d3c419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pelayo=20Garc=C3=ADa?= <25091358+oyale@users.noreply.github.com> Date: Fri, 18 Nov 2022 18:27:03 +0100 Subject: [PATCH] ci: add ansible lint gh action --- .github/workflows/ansible_lint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ansible_lint.yml diff --git a/.github/workflows/ansible_lint.yml b/.github/workflows/ansible_lint.yml new file mode 100644 index 0000000..63e0629 --- /dev/null +++ b/.github/workflows/ansible_lint.yml @@ -0,0 +1,13 @@ +name: Ansible Lint +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + # Important: This sets up your GITHUB_WORKSPACE environment variable + - uses: actions/checkout@v2 + + - name: Run ansible-lint + uses: ansible-community/ansible-lint-action@main