Skip to content

fix: file references #2

fix: file references

fix: file references #2

Workflow file for this run

name: backend-tests
on:
push:
branches: [main, development, automated-testing]
pull_request:
branches: [main, development]
jobs:
test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./backend/requirements.txt
- name: Execute tests
run: python ./backend/manage.py test