Skip to content

Use GitHub actions matrix to more easily identify failing platforms (#5) #29

Use GitHub actions matrix to more easily identify failing platforms (#5)

Use GitHub actions matrix to more easily identify failing platforms (#5) #29

Workflow file for this run

---
name: ci
'on':
pull_request:
push:
branches:
- main
paths-ignore:
- 'meta/**'
- '.gitignore'
- 'LICENSE'
- 'README.md'
defaults:
run:
working-directory: 'bcook254.vaultwarden'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'bcook254.vaultwarden'
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: python -m pip install yamllint
- name: Lint code.
run: yamllint .
molecule:
name: Molecule Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- name: ubuntu2204
image: docker.io/geerlingguy/docker-ubuntu2204-ansible:latest
- name: debian12
image: docker.io/geerlingguy/docker-debian12-ansible
- name: fedora39
image: docker.io/geerlingguy/docker-fedora39-ansible
- name: fedora38
image: docker.io/geerlingguy/docker-fedora38-ansible
- name: centosstream9
image: ghcr.io/bcook254/docker-centosstream9-ansible
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'bcook254.vaultwarden'
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: python -m pip install ansible molecule molecule-plugins[docker] docker
- name: Run Molecule tests.
run: molecule test --driver-name docker --scenario-name ci
env:
PLATFORM_NAME: ${{ matrix.platform.name }}
PLATFORM_IMAGE: ${{ matrix.platform.image }}
VAULTWARDEN_VERSION: '1.30.5'
VAULTWARDEN_URL: ${{ secrets.VAULTWARDEN_URL }}
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'