Skip to content

chore: test workflow #39

chore: test workflow

chore: test workflow #39

Workflow file for this run

name: Unit Test and Coverage
on:
push:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Before Script
run: |
pip install -r app/requirements.txt
python app/manage.py migrate
- name: Run Tests
run: |
python app/manage.py test