Molecule CI/CD #774
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 CI/CD | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- "**" | |
schedule: | |
- cron: "0 0 1 * *" | |
workflow_dispatch: | |
jobs: | |
molecule: | |
name: Molecule | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
scenario: | |
- advanced | |
- default | |
- dos | |
- specific-version | |
- uninstall | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v3 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install Molecule dependencies | |
run: pip3 install -r .github/workflows/requirements/requirements_molecule.txt | |
- name: Install Ansible core dependencies | |
run: ansible-galaxy install -r .github/workflows/requirements/requirements_ansible.yml | |
- name: Run Molecule tests | |
if: ${{ env.NGINX_CRT != 0 && env.NGINX_KEY != 0 }} | |
run: molecule test -s ${{ matrix.scenario }} | |
env: | |
PY_COLORS: 1 | |
ANSIBLE_FORCE_COLOR: 1 | |
NGINX_CRT: ${{ secrets.NGINX_CRT }} | |
NGINX_KEY: ${{ secrets.NGINX_KEY }} | |
RHEL_USERNAME: ${{ secrets.RHEL_USERNAME }} | |
RHEL_PASSWORD: ${{ secrets.RHEL_PASSWORD }} |