Skip to content

Backend testing

Backend testing #4

Workflow file for this run

run-name: 'Backend testing'
on:
push:
branches:
- backend
workflow_dispatch:
jobs:
testing:
name: testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: |
cd backend && pip install -r requirements.txt
- run: |
cd backend && pytest