Preparation for release on PyPI #237
Workflow file for this run
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: Testing | |
on: | |
# run on every push to main | |
push: | |
branches: | |
- main | |
# run on every push (not commit) to a PR, plus open/reopen | |
pull_request: | |
types: | |
- synchronize | |
- opened | |
- reopened | |
jobs: | |
build: | |
name: Build & test (${{ matrix.python-version }} | ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# continue testing other configurations even if a matrix job fails | |
fail-fast: false | |
matrix: | |
# latest python on Win/Mac/Lin | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.12", "3.11"] | |
# test older python versions on Linux only | |
include: | |
- os: ubuntu-latest | |
python-version: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mypy>=1.0 pytest | |
python -m pip install .[test] | |
- name: Run tests | |
if: always() | |
run: pytest . |