Skip to content

chore: add 'all' extra and planning/ workflow directory #95

chore: add 'all' extra and planning/ workflow directory

chore: add 'all' extra and planning/ workflow directory #95

Workflow file for this run

name: main
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- run: uv python install 3.13
- run: just install lint-ci
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.13"
- "3.14"
services:
postgres:
image: postgres:17
env:
POSTGRES_USER: outbox
POSTGRES_PASSWORD: outbox
POSTGRES_DB: outbox
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U outbox"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- run: uv python install ${{ matrix.python-version }}
- run: |
uv sync --all-extras --no-install-project
uv run --no-sync pytest . --cov=. --cov-report xml
env:
PYTHONDONTWRITEBYTECODE: 1
PYTHONUNBUFFERED: 1
POSTGRES_DSN: postgresql+asyncpg://outbox:outbox@127.0.0.1:5432/outbox