Skip to content

Upgrade Python to 3.12 and 3.13. #267

Upgrade Python to 3.12 and 3.13.

Upgrade Python to 3.12 and 3.13. #267

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.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- 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