From e7137317e78ebdb3ba27fa0ec261bc26f4fd3171 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Sun, 10 Apr 2022 21:47:05 -0400 Subject: [PATCH] Added Ansible Lint action --- .github/workflows/ansible_lint.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/ansible_lint.yaml diff --git a/.github/workflows/ansible_lint.yaml b/.github/workflows/ansible_lint.yaml new file mode 100644 index 0000000..fbeefec --- /dev/null +++ b/.github/workflows/ansible_lint.yaml @@ -0,0 +1,11 @@ +--- +name: Ansible Lint +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run ansible-lint + uses: ansible-community/ansible-lint-action@main