Skip to content

Commit

Permalink
github molecule workflow : use distro strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
zerwes committed Jul 10, 2023
1 parent 0ed5e59 commit ec361d2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
ansible-latest:
name: latest ansible version
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- debian11
- debian12
steps:
- uses: actions/checkout@v2

Expand All @@ -26,9 +32,16 @@ jobs:
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
ansible-pinned:
name: pinned ansible version
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- debian11
- debian12
steps:
- uses: actions/checkout@v2

Expand All @@ -45,9 +58,16 @@ jobs:
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
ansible-legacy:
name: legacy ansible version
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- debian11
- debian12
steps:
- uses: actions/checkout@v2

Expand All @@ -64,3 +84,4 @@ jobs:
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}

0 comments on commit ec361d2

Please sign in to comment.