From e848461d026465199b666da9f2277a47d75bf9ca Mon Sep 17 00:00:00 2001 From: Kev Jimenez Date: Thu, 1 Feb 2024 03:59:06 +0000 Subject: [PATCH] test ansible lint --- .github/workflows/ansiblelint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ansiblelint.yml diff --git a/.github/workflows/ansiblelint.yml b/.github/workflows/ansiblelint.yml new file mode 100644 index 0000000..b5ff90e --- /dev/null +++ b/.github/workflows/ansiblelint.yml @@ -0,0 +1,13 @@ +# .github/workflows/ansible-lint.yml +name: ansible-lint +on: + pull_request: + branches: ["main", "stable", "release/v*"] +jobs: + build: + name: Ansible Lint # Naming the build is important to use it as a status check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run ansible-lint + uses: ansible/ansible-lint@main # or version tag instead of 'main' \ No newline at end of file