Skip to content

Added: override for view all UI page (#375) #465

Added: override for view all UI page (#375)

Added: override for view all UI page (#375) #465

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Create database directory
run: mkdir -p ./instance
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/base.txt
pip install pytest pytest-env pytest-asyncio httpx
pip install -e .
- name: Run tests
run: pytest