Skip to content

docs: make agent setup uv-first (#6) #8

docs: make agent setup uv-first (#6)

docs: make agent setup uv-first (#6) #8

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python }}
- run: uv run --extra test pytest tests -q -m "not integration"