This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
Check firewall_default_zone
return code in changed_when
#60
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: Molecule Test | |
on: [push, pull_request] | |
jobs: | |
molecule: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
scenario: | |
- centos7 | |
- rocky8 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update && sudo apt-get -y install rsync | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r .github/workflows/requirements.txt | |
- name: Test with molecule | |
run: | | |
molecule test --scenario-name ${{ matrix.scenario }} | |
env: | |
PY_COLORS: "1" | |
ANSIBLE_FORCE_COLOR: "1" |