Manage config for invite #292
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
# Github action to run Molecule for "frontend" | |
name: frontend | |
on: | |
push: | |
paths: | |
- 'roles/hosts/**' | |
- 'roles/httpd/**' | |
- 'roles/welcome/**' | |
- 'molecule/frontend/**' | |
- '.github/workflows/molecule-frontend.yml' | |
pull_request: | |
paths: | |
- 'roles/hosts/**' | |
- 'roles/httpd/**' | |
- 'roles/welcome/**' | |
- 'molecule/frontend/**' | |
- '.github/workflows/molecule-frontend.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Installing dependencies | |
run: pip install jinja2 ansible molecule molecule-docker pytest-testinfra pytest setuptools | |
- name: Run role tests | |
run: molecule test -s frontend |