Skip to content

fix to pass molecule test #294

fix to pass molecule test

fix to pass molecule test #294

Workflow file for this run

---
name: CI
on:
push:
branches:
- "main"
pull_request:
defaults:
run:
working-directory: "poppen.iptables_legacy"
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: "poppen.iptables_legacy"
- name: Download actionlint
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color
shell: bash
molecule:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- ubuntu2204
- debian11
- debian10
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: "poppen.iptables_legacy"
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install test dependencies.
run: |
pip3 install ansible molecule molecule-plugins[docker] docker
- name: Run Molecule tests.
run: molecule test
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
MOLECULE_DISTRO: ${{ matrix.distro }}
NO_IPV6: "1"