Skip to content

Commit

Permalink
More debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-de-bock committed Jul 1, 2024
1 parent b55250d commit 5204bb9
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,18 @@ jobs:
# pip install molecule molecule-plugins[docker] docker ansible
pip install -r requirements.txt
- name: docker | ps
run: docker ps -a

- name: molecule | create
run: molecule create
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: docker | ps
run: docker ps -a

- name: molecule | list
run: molecule list
env:
Expand All @@ -100,20 +106,62 @@ jobs:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: docker | ps
run: docker ps -a

- name: molecule | list
run: molecule list
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: molecule | converge
run: molecule converge
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: docker | ps
run: docker ps -a

- name: molecule | list
run: molecule list
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: molecule | idempotence
run: molecule idempotence
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: docker | ps
run: docker ps -a

- name: molecule | list
run: molecule list
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: molecule | verify
run: molecule verify
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: docker | ps
run: docker ps -a

- name: molecule | list
run: molecule list
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: molecule | destroy
run: molecule destroy
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

0 comments on commit 5204bb9

Please sign in to comment.