From cab80a321204b9a66f107d138af9f27c40330b98 Mon Sep 17 00:00:00 2001 From: "Nicolas. S" Date: Sat, 25 Mar 2023 22:42:44 +0100 Subject: [PATCH] Ajouter 'ansible-lint.yml' --- ansible-lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ansible-lint.yml diff --git a/ansible-lint.yml b/ansible-lint.yml new file mode 100644 index 0000000..25a9651 --- /dev/null +++ b/ansible-lint.yml @@ -0,0 +1,18 @@ +name: Ansible-lint +on: [push] +jobs: + ansible-lint: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up Python 3.11 + run: | + apt update + apt install -y python3 python3-pip + - name: Install dependencies + run: | + python3 -m pip install --upgrade pip + pip install ansible-lint + - name: Analysing the code with ansible-lint + run: find . -type f -name "*.yml" | ansible-lint