Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

adds molecule converge tests #3

adds molecule converge tests

adds molecule converge tests #3

Workflow file for this run

---
name: molecule
on:
pull_request:
push:
branches:
- master
- wip/next
jobs:
molecule:
name: molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- centos-7
- centos-8
- rocky-8
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip3 install ansible molecule molecule-plugins[docker] docker
- run: molecule test -p ${{ matrix.distro }}
env:
PY_COLORS: '1'
...