Skip to content

feat: add uuidv7 primary key mixin #72

feat: add uuidv7 primary key mixin

feat: add uuidv7 primary key mixin #72

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-groups
- name: Run pre-commit checks
run: uv run pre-commit run --all-files
- name: Run tests
run: uv run pytest