ci: Run molecule with GitHub Actions #9
Workflow file for this run
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: Molecule unit testing | |
on: | |
push: | |
branches: | |
- mila | |
paths-ignore: | |
- '**.md' | |
- '**.rst' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '**.rst' | |
jobs: | |
molecule_test: | |
name: ${{ matrix.distro }} - molecule test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
distro: | |
- debian-systemd:bullseye | |
env: | |
MOLECULE_DISTRO: ${{ matrix.distro }} | |
PY_COLORS: 1 | |
ANSIBLE_FORCE_COLOR: 1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
path: mila.bareos | |
- name: Setup python environment | |
uses: actions/setup-python@v3 | |
- name: Install packages | |
run: pip install tox | |
- name: Run molecule test | |
run: | | |
cd mila.bareos && tox |