File tree 2 files changed +10
-12
lines changed
2 files changed +10
-12
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
name : Tests
2
3
3
4
# Controls when the action will run.
14
15
fail-fast : false
15
16
matrix :
16
17
ansible :
17
- - " 2.9"
18
- - " 2.10"
19
- - " 2.12"
18
+ - " 2.16"
19
+ - " 2.17"
20
20
steps :
21
21
# Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job
22
22
- uses : actions/checkout@v3
26
26
pipx uninstall ansible-core
27
27
python3 -m pip install --upgrade pip
28
28
ansible_version=${{ matrix.ansible }}
29
- if [[ "${{ matrix.ansible }}" = "2.9" ]]; then
30
- ansible_package=ansible
31
- elif [[ "${{ matrix.ansible }}" = "2.10" ]]; then
32
- ansible_package=ansible
33
- ansible_version=3
34
- else
35
- ansible_package=ansible-core
36
- fi
37
- python3 -m pip install $ansible_package==$ansible_version.* docker git+https://github.com/stackhpc/ansible-modules-hashivault@stackhpc
29
+ python3 -m pip install ansible-core==$ansible_version.* docker ansible-modules-hashivault
30
+ ansible-galaxy collection install -r core-requirements.yml
38
31
ansible-galaxy collection build
39
32
ansible-galaxy collection install *.tar.gz
40
33
Original file line number Diff line number Diff line change
1
+ ---
2
+ collections :
3
+ - name : ansible.posix
4
+ source : https://galaxy.ansible.com
5
+ version : <2
You can’t perform that action at this time.
0 commit comments