Skip to content

Add full support for typing, Ruff and Pyright, and do some touchups #29

Add full support for typing, Ruff and Pyright, and do some touchups

Add full support for typing, Ruff and Pyright, and do some touchups #29

name: Install locally and run pytest on macOS
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "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 }}
- name: Install dependencies
run: |
pip install .
pip install pytest
- name: Test with pytest
run: |
pytest tests --log-cli-level=WARNING