8000 Add composite primary key support (#44) · fastapi-practices/sqlalchemy-crud-plus@e116c94 · GitHub
[go: up one dir, main page]

Skip to content

Add composite primary key support (#44) #66

Add composite primary key support (#44)

Add composite primary key support (#44) #66

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: test ${{ matrix.python-version }}
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv venv
uv pip install -r requirements.txt
- name: Run test
run: uv run pytest
0