Skip to content

Commit 15b9fc8

Browse files
committed
Update action syntax & enable debugging
1 parent 196df8e commit 15b9fc8

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/ansible-ci.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
config:
13-
- image: geerlingguy/docker-ubuntu2204-ansible
14-
tag: latest
15-
- image: geerlingguy/docker-rockylinux9-ansible
16-
tag: latest
17-
- image: rsprta/opensuse-ansible
18-
tag: latest
12+
image:
13+
- alpine
14+
- amazonlinux
15+
- debian
16+
- centos
17+
- fedora
18+
- opensuse
19+
- ubuntu
1920
steps:
2021
- name: checkout
2122
uses: actions/checkout@v4
@@ -24,7 +25,8 @@ jobs:
2425
- name: molecule
2526
uses: robertdebock/[email protected]
2627
with:
28+
image: ${{ matrix.image }}
2729
options: parallel
2830
scenario: default
29-
image: ${{ matrix.config.image }}
30-
tag: ${{ matrix.config.tag }}
31+
command: "--debug test"
32+

0 commit comments

Comments
 (0)