From 16388e15cb4c0db0d3d6c4e47aca7a6625b5ce87 Mon Sep 17 00:00:00 2001 From: gardar Date: Mon, 22 Jan 2024 20:26:22 +0000 Subject: [PATCH] fix: run ansible-lint in ci Signed-off-by: gardar --- .github/workflows/ansible.yml | 16 ++++++++++++++++ 1 file changed, 16 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..375986d --- /dev/null +++ b/.github/workflows/ansible.yml @@ -0,0 +1,16 @@ +--- +on: + pull_request: + branches: + - master + workflow_dispatch: + + +jobs: + ansible-lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Lint role + uses: ansible/ansible-lint@main