Run integration tests against 2.16

This commit is contained in:
Chris Hawk 2025-01-29 15:32:12 -08:00
parent f22858dea9
commit 529d21630a

View file

@ -25,6 +25,7 @@ jobs:
# and test against the minimum version of Python supported by both. If/when we change
# the integration tests to support parallelism we can revisit.
ansible_version:
- stable-2.16
- stable-2.17
- stable-2.18
steps:
@ -35,7 +36,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # this is the minimum version required for Ansible 2.17
python-version: '3.10' # this is the minimum version required for Ansible 2.16
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install ansible-base (${{ matrix.ansible_version }})
@ -70,4 +71,4 @@ jobs:
# run tests
- name: Run integration tests
# Add the -vvv flag to print out more output
run: ansible-test integration -v --color --python 3.11 --venv-system-site-packages
run: ansible-test integration -v --color --python 3.10 --venv-system-site-packages