build: introduce uv as Python package manager #29
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |