From 0ec36f6fc55c0edf10cad8c006a71dba6bae4aaa Mon Sep 17 00:00:00 2001 From: Caspian Baska Date: Mon, 21 Feb 2022 11:35:54 +1100 Subject: [PATCH] ci: add ansible-lint action --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..391be3b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + +jobs: + ansible-lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Lint Ansible Playbook + uses: ansible/ansible-lint-action@master + with: + targets: ansible + override-deps: | + rich>=10.0.0,<11.0.0