Skip to content

Projects, part 2

Projects, part 2 #33

Workflow file for this run

name: pytest-windows
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
name: Python ${{ matrix.python-version }} (Windows)
runs-on: windows-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: python -m pytest tests/ -v