Skip to content

postgres connnection string support #15

postgres connnection string support

postgres connnection string support #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.11.7"
- name: Install Python 3.12
run: uv python install 3.12
- name: Sync workspace
run: uv sync --all-packages
- name: Check formatting
run: uv run ruff format --check .
- name: Lint
run: uv run ruff check .
- name: Typecheck
run: uv run pyright
- name: Run tests
run: uv run pytest --integration
- name: Build public packages
run: make build