Skip to content

Molecule Test

Molecule Test #151

Workflow file for this run

---
name: Molecule Test
on:
push:
pull_request:
schedule:
- cron: '30 5 * * 0'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9, "3.10", 3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
- name: Test with molecule
run: |
molecule test