From 09e83022e6914792b113f9cc4a69a4c156e75d7b Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sat, 23 Aug 2025 10:12:38 +0200 Subject: [PATCH] Actualiser .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c52d9a1..cba51a9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,19 @@ jobs: uses: actions/checkout@v4 - name: Install ansible run: | - apt update && apt install ansible -y + apt update && apt upgrade + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + + - name: Install Ansible and dependencies + run: | + pip install ansible ansible-lint + + - name: Run Ansible Lint + run: ansible-lint # - name: Run playbook "main" # run: |