Skip to content

patch 0.7.1 bump-version #211

patch 0.7.1 bump-version

patch 0.7.1 bump-version #211

Workflow file for this run

name: tests
on:
push:
jobs:
test:
name: py${{ matrix.python-version }} ${{ matrix.resolution }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
resolution: ["highest", "lowest-direct"]
services:
postgres:
image: postgres
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
PGUSER: postgres
steps:
- name: Setup checkout
uses: actions/checkout@master
- name: Install uv
uses: astral-sh/setup-uv@main
- name: Test
run: uv run --resolution ${{ matrix.resolution }} --extra dev --python=${{ matrix.python-version }} pytest tests