Skip to content

Add python 3.14 to CI (#1162) #1149

Add python 3.14 to CI (#1162)

Add python 3.14 to CI (#1162) #1149

# This workflow will install Python dependencies and run tests in a Windows environment.
# This is intended to catch any file-system specific issues, and so runs less
# frequently than other test suites.
name: Windows unit test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.11']
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 uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv pip install --system -e .[dev]
uv pip install --system -r requirements.txt
- name: Run unit tests with pytest
run: |
python -m pytest tests