Skip to content

Merge pull request #51 from via-cs/cleanup/backend #106

Merge pull request #51 from via-cs/cleanup/backend

Merge pull request #51 from via-cs/cleanup/backend #106

Workflow file for this run

name: Backend CI
on:
push:
paths:
- 'backend/**'
pull_request:
paths:
- 'backend/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install Python dependencies
run: |
cd backend
pip install -r requirements.txt
- name: Run backend tests
run: |
cd backend
pytest