Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

AronBuzogany is running backend tests πŸš€ #25

AronBuzogany is running backend tests πŸš€

AronBuzogany is running backend tests πŸš€ #25

name: UGent-3-backend-test
run-name: ${{ github.actor }} is running backend tests πŸš€
on: [pull_request]
jobs:
Backend-tests:
if: contains(github.event.pull_request.changed_files.*.filename, 'backend/')
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
working-directory: ./backend
run: pip3 install -r requirements.txt && pip3 install -r dev-requirements.txt
- name: Running tests
working-directory: ./backend
run: bash ./run_tests.sh