Run molecule tests on the role #4
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: Test | |
run-name: Run molecule tests on the role | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies. | |
run: pip install yamllint ansible-lint ansible | |
- name: Run ansible-lint | |
run: "ansible-lint" | |
molecule: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies. | |
run: | | |
python -m pip install --upgrade pip | |
pip install ansible docker molecule molecule-plugins | |
sudo apt install rsync | |
- name: Install Galaxy dependencies. | |
run: ansible-galaxy collection install community.docker community.mysql | |
- name: Run molecule | |
run: "molecule test" |