Skip to content

Update publish workflows and add TestPyPI index config #22

Update publish workflows and add TestPyPI index config

Update publish workflows and add TestPyPI index config #22

Workflow file for this run

name: Remote Tests
on: [push]
jobs:
remote-tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install the project
run: uv sync --locked --all-extras --all-groups
- name: Run remote tests
run: uv run pytest -vv -m "remote"