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: |