Remove TODO list in readme, since everything left is in code with TOD… #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
paths-ignore: | |
- 'README.rst' | |
pull_request: | |
types: [ opened, synchronize ] | |
paths-ignore: | |
- 'README.rst' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
name: Tests - ${{ matrix.python-version }} - ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install test dependencies | |
run: | | |
python -m pip install pytest -e . | |
- name: Run tests on ${{ matrix.python-version }} | |
run: | | |
python -m pytest tests |