Skip to content

Modernize stages 1-3 #21

Modernize stages 1-3

Modernize stages 1-3 #21

name: Run pytests windows
on:
push:
branches: [dev]
pull_request:
branches: [main, dev, peppy0_50]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.13"]
os: [windows-latest]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package with test dependencies
run: python -m pip install ".[test]"
- name: Run pytest tests
run: pytest tests -v