Integration #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: Integration | |
on: | |
push: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# first of each month | |
- cron: '0 0 1 * *' | |
jobs: | |
test: | |
name: Molecule | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
distro: | |
- debian12 | |
- debian11 | |
- ubuntu2204 | |
- fedora39 | |
- rockylinux9 | |
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: pip3 install ansible-lint molecule molecule-plugins[docker] yamllint | |
- name: Run Molecule tests. | |
run: molecule test -s default | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
MOLECULE_DISTRO: ${{ matrix.distro }} |