Skip to content

Update dependency ansible-lint to v24 #498

Update dependency ansible-lint to v24

Update dependency ansible-lint to v24 #498

Workflow file for this run

---
name: tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", '3.11']
ansible-version: ['6', '7']
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox
env:
ANSIBLE: ${{ matrix.ansible-version }}
PYTHON: ${{ matrix.python-version }}