Skip to content

Create test matrix for python versions #201

Create test matrix for python versions

Create test matrix for python versions #201

Workflow file for this run

name: Tests
on: [push]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GIT_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: "2.0.1"
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run invoke test
- name: Run style checker
run: poetry run flake8