Add molecule setup for firewalld role #1
Workflow file for this run
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: Test firewalld | |
on: | |
pull_request: | |
paths: | |
- "roles/firewalld/**" | |
jobs: | |
molecule-firewalld: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
scenario: | |
- centos7 | |
env: | |
MOLECULE_RUN_TAGS: firewalld | |
PY_COLORS: 1 | |
ANSIBLE_FORCE_COLOR: 1 | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v4 | |
with: | |
path: ansible_collections/mirsg/infrastructure | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install test dependencies | |
run: | | |
sudo apt-get update && sudo apt-get -y install rsync | |
python3 -m pip install --upgrade pip | |
python3 -m pip install ansible molecule molecule-plugins[docker] docker requests | |
- name: Test with molecule | |
run: | | |
cd ansible_collections/mirsg/infrastructure/tests | |
molecule test --scenario-name "${{ matrix.scenario }}" |