Skip to content

Click no to add note #215

Click no to add note

Click no to add note #215

Workflow file for this run

name: Pull Request Checks
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test with python ${{ matrix.python-version }}
run: DATABASE_URL="sqlite+aiosqlite:///:memory:" uv run --frozen pytest