geerlingguy.ansible-role-do.../.github/workflows/ci.yml

74 lines
1.4 KiB
YAML
Raw Normal View History

---
name: CI
'on':
pull_request:
push:
branches:
- master
schedule:
- cron: "0 7 * * 0"
defaults:
run:
working-directory: 'geerlingguy.docker'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
2024-01-25 05:01:14 +01:00
uses: actions/checkout@v4
with:
path: 'geerlingguy.docker'
- name: Set up Python 3.
2024-01-25 05:01:14 +01:00
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
2021-03-15 15:27:11 +01:00
run: pip3 install yamllint
- name: Lint code.
run: |
yamllint .
molecule:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
2024-01-25 05:01:14 +01:00
- rockylinux9
- rockylinux8
2024-05-27 09:26:04 +02:00
- ubuntu2404
- ubuntu2204
- ubuntu2004
2023-08-06 15:01:27 +02:00
- debian12
2021-08-17 10:30:02 +02:00
- debian11
- debian10
2024-01-25 05:01:14 +01:00
- fedora39
steps:
- name: Check out the codebase.
2024-01-25 05:01:14 +01:00
uses: actions/checkout@v4
with:
path: 'geerlingguy.docker'
- name: Set up Python 3.
2024-01-25 05:01:14 +01:00
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install ansible molecule molecule-plugins[docker] docker
- name: Run Molecule tests.
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}