Skip to content

build: add tests to workflow_dispatch group for testing purposes #3

build: add tests to workflow_dispatch group for testing purposes

build: add tests to workflow_dispatch group for testing purposes #3

Workflow file for this run

name: backend-tests
on:
push:
branches: [main, development, automated-testing]
pull_request:
branches: [main, development]
workflow_dispatch:
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