Skip to content

feat: show both level and desc, with levels from external json file #85

feat: show both level and desc, with levels from external json file

feat: show both level and desc, with levels from external json file #85

Workflow file for this run

name: Test
on: [push]
jobs:
Pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
working-directory: api
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
working-directory: api
run: pytest test.py