Skip to content

Bump ansible-lint from 5.4.0 to 6.17.2 #171

Bump ansible-lint from 5.4.0 to 6.17.2

Bump ansible-lint from 5.4.0 to 6.17.2 #171

Workflow file for this run

---
on:
push:
pull_request:
jobs:
Tests:
name: Test role on different ansible versions
runs-on: ubuntu-20.04
strategy:
matrix:
ansible:
- "2.12"
- "2.13"
- "2.14"
scenario:
- pdns-45
- pdns-46
- pdns-47
- pdns-master
- pdns-os-repos
- systemd-no-overrides
steps:
- name: checkout
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run the tests
run: tox -- molecule test -s ${{ matrix.scenario }}
env:
ANSIBLE: ${{ matrix.ansible }}