Skip to content

Add Identity Verification System #6

Add Identity Verification System

Add Identity Verification System #6

Workflow file for this run

name: Test Backend
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
working-directory: ./backend
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov httpx
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
working-directory: ./backend
run: |
pytest -v