Run molecule tests on the role #26
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 netaddr 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 netaddr ansible docker molecule molecule-plugins | |
- name: Install Galaxy dependencies. | |
run: ansible-galaxy collection install community.docker | |
- name: Run molecule | |
run: "molecule test" |