Run molecule tests on the role #55
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: | |
env: | |
ANSIBLE_ROLES_PATH: roles | |
ANSIBLE_HASH_BEHAVIOUR: merge | |
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: | | |
sudo apt install python3 python3-pip direnv | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Run ansible-lint | |
run: | | |
direnv allow | |
ansible-lint | |
molecule: | |
strategy: | |
matrix: | |
os: [ubuntu-2204, ubuntu-2404, debian-12] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies. | |
run: | | |
sudo apt install python3 python3-pip direnv | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
direnv allow | |
ansible-galaxy install -r requirements.yml | |
- name: Run molecule | |
run: molecule test -p ${{ matrix.os }} |