Skip to content

feat(client): manifest-based resolution with legacy fallback + cross-… #169

feat(client): manifest-based resolution with legacy fallback + cross-…

feat(client): manifest-based resolution with legacy fallback + cross-… #169

Workflow file for this run

name: Windows_Tests
on: [push]
jobs:
test:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v4
name: Configure pip caching
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install pytest
pip install -e .
- name: Show platform info
run: |
python -c "import platform; print(f'Architecture: {platform.machine()}')"
python -c "import sys; print(f'Platform: {sys.platform}')"
- name: Run tests
run: |
pytest -v