Skip to content

add full stack to docker compose #8

add full stack to docker compose

add full stack to docker compose #8

Workflow file for this run

name: API Tests
on:
push:
branches: [main]
paths:
- 'services/query-engine/**'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install Poetry
run: pip install poetry==2.3.2
- name: Install dependencies
working-directory: services/query-engine
run: poetry install --no-root --no-interaction
- name: Run tests
working-directory: services/query-engine
run: poetry run pytest tests/ -v