Remove redirect for idr0138 #460
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 | |
# 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 }}" |