Skip to content

Update GitHub Actions workflows to use actions/checkout@v7 and action… #31

Update GitHub Actions workflows to use actions/checkout@v7 and action…

Update GitHub Actions workflows to use actions/checkout@v7 and action… #31

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', '3.14']
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v9.0.0
- name: Install the project
run: uv sync --locked --all-extras --all-groups
- name: Run remote tests
run: uv run pytest -vv -m "remote"