Skip to content

Merge pull request #435 from dominikl/omap #466

Merge pull request #435 from dominikl/omap

Merge pull request #435 from dominikl/omap #466

Workflow file for this run

---
name: Molecule
# yamllint disable-line rule:truthy
on:
push:
pull_request:
jobs:
list-scenarios:
runs-on: ubuntu-22.04
outputs:
matrix: ${{ steps.listscenarios.outputs.scenarios }}
steps:
- uses: actions/checkout@v3
- id: listscenarios
uses: ome/action-ansible-molecule-list-scenarios@main
with:
subdir: ansible
test:
name: Test
needs:
- list-scenarios
runs-on: ubuntu-22.04
strategy:
# Keep running so we can see if other tests pass
fail-fast: false
matrix:
scenario: ${{fromJson(needs.list-scenarios.outputs.matrix)}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Ansible & Molecule
# TODO: review upgrade to Molecule 5.x
run: pip install "ansible<8" ansible-lint flake8 \
"molecule<5" "requests < 2.32.0" "ansible-compat<4" molecule-plugins[docker] pytest-testinfra
- name: Run Molecule
run: cd ansible && molecule test -s "${{ matrix.scenario }}"