Skip to content

Add error reporting #963

Add error reporting

Add error reporting #963

Workflow file for this run

name: Unit Tester
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
name: Run Django Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout the branch
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: python manage.py test