molecule tests #65
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: # yamllint disable-line rule:truthy | |
schedule: | |
- cron: "5 5 1 * *" | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: ~ | |
jobs: | |
molecule: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
distro: | |
- image: jrei/systemd-ubuntu:20.04 | |
instance: systemd-ubuntu-20.04 | |
beats_flavor: | |
- auditbeat | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.12' | |
- name: Install molecule | |
run: sudo pip3 install ansible molecule molecule-docker | |
- name: Run molecule create | |
run: sudo $(which molecule) create | |
env: | |
MOLECULE_DISTRO: ${{ matrix.distro.image }} | |
MOLECULE_INSTANCE_NAME: ${{ matrix.distro.instance }} | |
MOLECULE_BEATS_FLAVOR: ${{ matrix.beats_flavor }} | |
- name: Check docker | |
run: docker --version && docker ps -a | |
- name: Run molecule converge | |
run: sudo $(which molecule) converge | |
env: | |
MOLECULE_DISTRO: ${{ matrix.distro.image }} | |
MOLECULE_INSTANCE_NAME: ${{ matrix.distro.instance }} | |
MOLECULE_BEATS_FLAVOR: ${{ matrix.beats_flavor }} |