Skip to content

Fix/reliable int mapping #115

Fix/reliable int mapping

Fix/reliable int mapping #115

Workflow file for this run

name: Unit tests
on:
pull_request:
branches:
- main
- 'feature/new-ingest-process'
workflow_dispatch:
jobs:
run-unit-tests:
name: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Copy environment variables
run: cp environments/dev_docker.env .env
- name: Run DBs and API
run: |
docker compose up -d --wait
- name: Run pytest
run: |
uv run pytest
- name: Dump docker logs
if: failure()
uses: jwalton/gh-docker-logs@v2