Skip to content

Update release workflow #34

Update release workflow

Update release workflow #34

Workflow file for this run

# This workflow runs Unit-Tests for compatibility on Windows
# with the oldest and latest supported Python version.
name: Windows Test
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: true
matrix:
python-version: ['3.10', '3.14']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install test utilities
run: |
pip install pytest pytest_mock pyfakefs
- name: Install package
run: pip install -e .
- name: Compile translations
run: python compile_translations.py
- name: Test with pytest
run: pytest tests/