postgres connnection string support #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |