From 595532d3c019b6a3221cc049bc6f195b00536c98 Mon Sep 17 00:00:00 2001 From: Boris Glimcher <36732377+glimchb@users.noreply.github.com> Date: Mon, 3 Jun 2024 14:32:24 -0400 Subject: [PATCH] ci: add ansible lint Signed-off-by: Boris Glimcher <36732377+glimchb@users.noreply.github.com> --- .github/workflows/ansible.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..79b75ed --- /dev/null +++ b/.github/workflows/ansible.yml @@ -0,0 +1,18 @@ +name: Ansible + +on: + workflow_dispatch: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + lint: + name: Ansible lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ansible/ansible-lint@v6 + +# TODO: add build, test, ut, docs, ...