Skip to content

chore: add LICENSE and configure pyproject.toml for PyPI packaging (#3) #3

chore: add LICENSE and configure pyproject.toml for PyPI packaging (#3)

chore: add LICENSE and configure pyproject.toml for PyPI packaging (#3) #3

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
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 package and test dependencies
run: |
pip install -e .
pip install pytest
- name: Run tests
run: pytest tests/ -v