Skip to content

Refresh for 2024: #9

Refresh for 2024:

Refresh for 2024: #9

Workflow file for this run

on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os-version: [ubuntu-latest, windows-latest, macos-latest]
runs-on: "${{ matrix.os-version }}"
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: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install .[dev]
- name: Run tests
run: pytest