Skip to content

Respect GitHub ratelimit to support more than 8 stacked PRs #461

Respect GitHub ratelimit to support more than 8 stacked PRs

Respect GitHub ratelimit to support more than 8 stacked PRs #461

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-suffix: "optional-suffix"
- name: Run tests
run: uv run --frozen pytest --verbose