Skip to content

Commit

Permalink
Explicitly test Ansible 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Nov 7, 2024
1 parent 6566e38 commit be17f83
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- devel
include:
- python: "3.8"
ansible: "stable-2.10"
ansible: "v2.10.0"
- python: "3.6"
ansible: "stable-2.11"
- python: "3.7"
Expand Down Expand Up @@ -67,6 +67,9 @@ jobs:
if: matrix.container == null
- name: Install Ansible
run: pip install --upgrade https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz
- name: Ensure Jinja version is old enough for Ansible 2.10.0
run: pip install --upgrade 'Jinja2<3.1'
if: matrix.ansible == 'v2.10.0'
- name: Install dependencies
run: make test-setup
- name: prepare a redhat-uep.pem, even if we run on Ubuntu
Expand All @@ -81,7 +84,7 @@ jobs:
run: make dist-test
- name: Run sanity tests
run: make SANITY_OPTS="--docker" sanity
if: matrix.ansible != 'stable-2.10' && matrix.ansible != 'stable-2.11'
if: matrix.ansible != 'v2.10.0' && matrix.ansible != 'stable-2.11'

checkmode:
runs-on: ubuntu-latest
Expand Down

0 comments on commit be17f83

Please sign in to comment.