Skip to content

Add demo realm

Add demo realm #36

Workflow file for this run

name: Run pytest
on:
pull_request:
push:
branches: [ $default-branch ]
jobs:
run-pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
pip install -e .[tests]
- name: Run pytest
run: |
pytest --cov=app -v tests