Skip to content

build: introduce uv as Python package manager #29

build: introduce uv as Python package manager

build: introduce uv as Python package manager #29

name: DB Migration Test on UV
on:
pull_request:
branches:
- main
- plugins/beta
paths:
- api/migrations/**
- .github/workflows/db-migration-test.yml
- .github/workflows/db-migration-test-on-uv.yml
concurrency:
group: db-migration-test-on-uv-${{ github.ref }}
cancel-in-progress: true
jobs:
db-migration-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Setup UV and Python
uses: ./.github/actions/setup-uv
with:
uv-lockfile: api/uv.lock
- name: Install dependencies
run: uv sync --project api
- name: Prepare middleware env
run: |
cd docker
cp middleware.env.example middleware.env
- name: Set up Middlewares
uses: hoverkraft-tech/[email protected]
with:
compose-file: |
docker/docker-compose.middleware.yaml
services: |
db
redis
- name: Prepare configs
run: |
cd api
cp .env.example .env
- name: Run DB Migration
env:
DEBUG: true
run: |
cd api
uv run flask upgrade-db