Skip to content

Api working

Api working #33

Workflow file for this run

name: Backend test CI
on:
- pull_request
jobs:
backend-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
working-directory: ./
run: |
python -m pip install --upgrade pip
pip install -r ./backend/requirements.txt
- name: Running Django tests
run: |
sh ./backend/runtests.sh