Skip to content

Commit 439e9f3

Browse files
authored
Added support for ansible 2.12 (#400)
* Added support for ansible 2.12, and python 3.10 * Removed 3.10 from ci/cd * Exclude 2.7 python with 2.12 ansible from ci/cd
1 parent eb6b5de commit 439e9f3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ansible-test.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
ansible-version: [stable-2.10, stable-2.11]
18+
ansible-version: [stable-2.11, stable-2.12]
1919
steps:
2020
- name: Check out code
2121
uses: actions/checkout@v2
@@ -50,10 +50,12 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
python-version: [2.7, 3.8, 3.9]
53-
ansible-version: [stable-2.10, stable-2.11, devel]
53+
ansible-version: [stable-2.11, stable-2.12, devel]
5454
exclude:
5555
- ansible-version: devel
5656
python-version: 2.7
57+
- ansible-version: stable-2.12
58+
python-version: 2.7
5759

5860
steps:
5961
- name: Set up Python ${{ matrix.python-version }}
@@ -100,7 +102,7 @@ jobs:
100102
strategy:
101103
fail-fast: false
102104
matrix:
103-
ansible-version: [stable-2.9, stable-2.10, stable-2.11, devel]
105+
ansible-version: [stable-2.11, stable-2.12, devel]
104106

105107
steps:
106108
- name: Set up Python 3.8

0 commit comments

Comments
 (0)