Skip to content

Commit

Permalink
Steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-de-bock committed Jul 1, 2024
1 parent 3f03ee9 commit 1e76013
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,32 @@ jobs:
# pip install molecule molecule-plugins[docker] docker ansible
pip install -r requirements.txt
- name: Run Molecule tests.
run: molecule test
- name: molecule | create
run: molecule create
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- 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: molecule | idempotence
run: molecule idempotence
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

- name: molecule | verify
run: molecule verify
env:
# PY_COLORS: '1'
# ANSIBLE_FORCE_COLOR: '1'
# MOLECULE_DISTRO: ${{ matrix.con }}
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}

0 comments on commit 1e76013

Please sign in to comment.