docs(README): updated requirements #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: 'Molecule' | |
on: | |
pull_request: | |
push: | |
branches: ['main'] | |
jobs: | |
lint: | |
name: 'Lint' | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- name: 'Checkout the codebase' | |
uses: 'actions/checkout@v4' | |
- name: 'Set up Python 3' | |
uses: 'actions/setup-python@v5' | |
with: | |
python-version: '3.12' | |
- name: 'Run linters' | |
run: | | |
pip3 install --no-cache-dir tox | |
tox -e lint-2.16 | |
molecule: | |
name: 'Molecule' | |
needs: 'lint' | |
runs-on: 'ubuntu-22.04' | |
strategy: | |
matrix: | |
include: | |
- distro: 'amazonlinux-2023' | |
playbook: 'converge.yml' | |
- distro: 'debian-11' | |
playbook: 'converge.yml' | |
- distro: 'debian-11' | |
playbook: 'converge-corretto.yml' | |
- distro: 'debian-12' | |
playbook: 'converge.yml' | |
- distro: 'debian-12' | |
playbook: 'converge-corretto.yml' | |
- distro: 'fedora-39' | |
playbook: 'converge.yml' | |
- distro: 'fedora-39' | |
playbook: 'converge-corretto.yml' | |
- distro: 'fedora-40' | |
playbook: 'converge.yml' | |
- distro: 'fedora-40' | |
playbook: 'converge-corretto.yml' | |
- distro: 'rockylinux-8' | |
playbook: 'converge.yml' | |
- distro: 'rockylinux-8' | |
playbook: 'converge-corretto.yml' | |
- distro: 'rockylinux-9' | |
playbook: 'converge.yml' | |
- distro: 'rockylinux-9' | |
playbook: 'converge-corretto.yml' | |
- distro: 'ubuntu-20.04' | |
playbook: 'converge.yml' | |
- distro: 'ubuntu-20.04' | |
playbook: 'converge-corretto.yml' | |
- distro: 'ubuntu-22.04' | |
playbook: 'converge.yml' | |
- distro: 'ubuntu-22.04' | |
playbook: 'converge-corretto.yml' | |
steps: | |
- name: 'Checkout the codebase' | |
uses: 'actions/checkout@v4' | |
- name: 'Set up Python 3' | |
uses: 'actions/setup-python@v5' | |
with: | |
python-version: '3.12' | |
- name: 'Testing an Ansible role with Molecule' | |
run: | | |
pip3 install --no-cache-dir tox | |
tox | |
env: | |
TAG: ${{ matrix.distro }} | |
MOLECULE_PLAYBOOK: ${{ matrix.playbook }} |