Skip to content

Add Ubuntu 24.04 to the list of testing targets and make it default #71

Add Ubuntu 24.04 to the list of testing targets and make it default

Add Ubuntu 24.04 to the list of testing targets and make it default #71

Workflow file for this run

---
name: molecule
on:
pull_request:
branches: [ "master" ]
push:
branches: [ "master" ]
jobs:
molecule:
name: molecule
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
distro:
- ubuntu2404
- ubuntu2204
- ubuntu2004
steps:
- uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@59bcdbae779c639f869cc8e3b223f36692af05c2
with:
micromamba-version: '2.0.5-0'
environment-file: conda.dev.yml
init-shell: bash
post-cleanup: 'all'
- name: "Install role dependencies"
run: ansible-galaxy install -r requirements.yml
shell: micromamba-shell {0}
- name: "Run Molecule tests"
run: molecule test
shell: micromamba-shell {0}
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}