Skip to content

Github pages with uv #99

Github pages with uv

Github pages with uv #99

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
branches: ["main"]
tags-ignore: ["**"]
pull_request:
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
env:
- "py313-tests"
- "py312-tests"
- "py311-tests"
- "py310-tests"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Run set suite
run: uvx --with tox-uv tox -e ${{ matrix.env }} -- -m "not slow"