Skip to content

enhance folder structure & apply API versioning #30

enhance folder structure & apply API versioning

enhance folder structure & apply API versioning #30

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-root
- name: Run pytest
run: poetry run pytest