Skip to content

✨ Add api routes with base data model #2

✨ Add api routes with base data model

✨ Add api routes with base data model #2

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
sonarcloud:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Unit Tests
run: python -m pytest -v