Skip to content

WIP Make (mostly) pgai 0.4.0 compatible #159

WIP Make (mostly) pgai 0.4.0 compatible

WIP Make (mostly) pgai 0.4.0 compatible #159

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ main ]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install uv
run: pip install uv
- name: Create venv
run: uv venv
- name: Install dependencies
run: |
uv sync
- name: Start docker-compose
run: docker compose up -d
- name: Run Test
run: uv run pytest
- name: Logs
run: docker compose logs
- name: Stop docker-compose
run: docker compose down