Skip to content

molecule

molecule #24

Workflow file for this run

---
name: molecule
on:
pull_request:
branches:
- master
schedule:
- cron: "0 3 * * 0"
defaults:
run:
working-directory: 'nephelaiio.docker'
jobs:
molecule:
name: molecule
runs-on: ubuntu-latest
strategy:
matrix:
image:
- geerlingguy/docker-ubuntu2204-ansible:latest
- geerlingguy/docker-ubuntu2004-ansible:latest
- geerlingguy/docker-debian12-ansible:latest
- geerlingguy/docker-debian11-ansible:latest
steps:
- name: check out the codebase
uses: actions/checkout@v3
with:
path: 'nephelaiio.docker'
- name: set up python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: install poetry
run: pip3 install poetry
- name: install pips
run: poetry install
- name: run molecule tests.
run: poetry run -- molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'