Skip to content

Update vizdb orms for schema changes #48

Update vizdb orms for schema changes

Update vizdb orms for schema changes #48

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Restore uv cache
uses: actions/cache@v4
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
uv-${{ runner.os }}
- name: Install Postgresql
uses: ikalnytskyi/action-setup-postgres@v6
with:
username: postgres
id: postgres
- name: Install dependencies
run: |
uv pip install --system -e .[dev]
- name: Test with pytest
run: |
pytest -s
env:
PGSERVICE: ${{ steps.postgres.outputs.service-name }}
- name: Minimize uv cache
run: uv cache prune --ci