Skip to content

Update pytest requirement from <9 to <10 #458

Update pytest requirement from <9 to <10

Update pytest requirement from <9 to <10 #458

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
mypy:
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- run: python -m pip install tox tox-uv
- run: python -m tox -e mypy
check-pacakge-build:
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- run: python -m pip install tox tox-uv
- run: python -m tox -e twine-check
test:
strategy:
matrix:
os:
- name: Windows
runner: windows-latest
- name: macOS
runner: macos-latest
- name: Linux
runner: ubuntu-latest
py: ['3.10', '3.11', '3.12', '3.13', '3.14']
name: "Test py${{ matrix.py }} (${{ matrix.os.name }})"
runs-on: ${{ matrix.os.runner }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.py }}
- run: python -m pip install tox tox-uv
- run: python -m tox -e py