Support rustus 1.0.0 and later #37
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: Ansible Molecule | |
"on": | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
molecule: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
scenario: | |
- default | |
- version_lt_1_0_0 | |
- latest | |
- systemd | |
steps: | |
- name: Install Ansible Molecule. | |
run: | | |
pip3 install --user molecule molecule-plugins[podman] ansible-core | |
- name: Check out the codebase. | |
uses: actions/checkout@v3 | |
- name: Run Ansible Molecule. | |
run: | | |
molecule --base-config molecule/base.yml test --scenario-name ${{ matrix.scenario }} | |
env: | |
ANSIBLE_FORCE_COLOR: '1' |