Ubuntu 24.04 #81
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 | |
- develop | |
- feature/* | |
defaults: | |
run: | |
working-directory: 'sdarwin.nagios' | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v3 | |
with: | |
path: 'sdarwin.nagios' | |
- name: Set up Python 3. | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install test dependencies. | |
run: pip3 install yamllint ansible-lint ansible | |
- name: Lint code. | |
run: | | |
set -e | |
yamllint . | |
ansible-lint . | |
molecule: | |
name: Molecule | |
# runs-on: ubuntu-latest | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# - distro: centos7 | |
# playbook: converge.yml | |
- distro: centos8 | |
playbook: converge.yml | |
# - distro: debian9 | |
# playbook: converge.yml | |
- distro: debian10 | |
playbook: converge.yml | |
# - distro: ubuntu1604 | |
# playbook: converge.yml | |
- distro: ubuntu1804 | |
playbook: converge.yml | |
- distro: ubuntu2004 | |
playbook: converge.yml | |
- distro: ubuntu2204 | |
playbook: converge.yml | |
- distro: ubuntu2404 | |
playbook: converge.yml | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v3 | |
with: | |
path: 'sdarwin.nagios' | |
- name: Set up Python 3. | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install test dependencies. | |
run: pip3 install ansible molecule-plugins[docker] docker | |
# run: | | |
# pip3 install ansible==6.4.0 | |
# pip3 install molecule[docker]==4.0.1 | |
# pip3 install docker==6.0.0 | |
- name: Run Molecule tests. | |
run: molecule test | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
MOLECULE_DISTRO: ${{ matrix.distro }} | |
MOLECULE_PLAYBOOK: ${{ matrix.playbook }} |