From c94564d8b464892ac387ec345e1e0ecff982269e Mon Sep 17 00:00:00 2001 From: Amit Kumar Date: Wed, 21 Feb 2024 12:37:42 +0000 Subject: [PATCH] Add linting for ansible --- .github/lint.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/lint.yaml diff --git a/.github/lint.yaml b/.github/lint.yaml new file mode 100644 index 00000000..5fa50718 --- /dev/null +++ b/.github/lint.yaml @@ -0,0 +1,14 @@ +name: Ansible Lint + +on: + push: + pull_request: + +jobs: + build: + name: Ansible Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run ansible-lint + uses: ansible/ansible-lint@main \ No newline at end of file