Skip to content

release: prepare v0.2.0 example-first docs and SQLAlchemy integration #2

release: prepare v0.2.0 example-first docs and SQLAlchemy integration

release: prepare v0.2.0 example-first docs and SQLAlchemy integration #2

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- docs-hexagonal
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: tests-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python 3.12
run: uv python install 3.12
- name: Sync dependencies
run: uv sync --frozen --group dev
- name: Run test suite
run: uv run pytest -q