Skip to content

Fixing typos discovered by codespell (#162) #83

Fixing typos discovered by codespell (#162)

Fixing typos discovered by codespell (#162) #83

Workflow file for this run

name: unit tests
permissions:
contents: read
on:
push:
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# BEHOLD, our test grid!
os: [ubuntu-24.04, windows-2025, macos-15]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install PIP Packages
run: |
pip install -e .
pip install pytest
- name: Run tests
run: pytest test/
env:
PYTHONHASHSEED: 0