Skip to content
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.

Add description endpoints #8

Add description endpoints

Add description endpoints #8

Workflow file for this run

name: Python Tests
on:
push:
branches:
- main
pull_request:
env:
LWAPI_ENVIRONMENT: testing
LWAPI_MINIO_HOST: localhost
LWAPI_MINIO_PORT: 9000
LWAPI_OPENAI_API_KEY: fake_key
jobs:
tests:
runs-on: ubuntu-latest
services:
minio:
image: minio/minio
env:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio
ports:
- 9000:9000
options: --health-cmd "curl -f http://localhost:9000/minio/health/live" --health-interval 10s --health-timeout 5s --health-retries 3
postgres:
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: linguaweb
ports:
- 5432:5432
options: --health-cmd "pg_isready -U postgres" --health-interval 10s --health-timeout 5s --health-retries 3
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: poetry
- name: Install dependencies
run: |
poetry install
- name: Run tests
id: run-tests
run: >
poetry run pytest \
--junitxml=pytest.xml \
--cov-report=term-missing:skip-covered \
--cov-report=xml:coverage.xml \
--cov=src tests \
--log-level=DEBUG \
--verbose
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: poetry
- run: |
poetry install
poetry run mypy .