Skip to content

Remove screencast placeholder from README #146

Remove screencast placeholder from README

Remove screencast placeholder from README #146

Workflow file for this run

name: Backend CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run Tests
run: |
cd backend
python manage.py test