Merge pull request #140 from Oefenweb/consistency-changes #215
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: CI | |
'on': | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '30 1 * * 3' | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
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 test dependencies | |
run: | | |
pip install ansible-lint | |
ansible-galaxy install -r requirements.yml | |
- name: Lint code | |
run: | | |
yamllint . | |
ansible-lint | |
molecule: | |
name: Molecule | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "${{ github.repository }}" | |
needs: | |
- lint | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- distro: debian10 | |
- distro: debian11 | |
- distro: debian12 | |
- distro: ubuntu1804 | |
ansible-version: '>=9, <10' | |
- distro: ubuntu2004 | |
- distro: ubuntu2204 | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v3 | |
with: | |
path: "${{ github.repository }}" | |
- name: Set up Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install test dependencies | |
run: | | |
pip install 'ansible${{ matrix.ansible-version }}' molecule-plugins[docker] docker | |
- name: Run Molecule tests | |
run: | | |
molecule test | |
env: | |
ANSIBLE_FORCE_COLOR: '1' | |
ANSIBLE_VERBOSITY: '2' | |
MOLECULE_DEBUG: '1' | |
MOLECULE_DISTRO: "${{ matrix.distro }}" | |
PY_COLORS: '1' |