Skip to content

project finished

project finished #19

Workflow file for this run

name: CI-Backend
on:
pull_request:
branches:
- main
jobs:
ci-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r app/requirements.txt
- name: Run tests
run: |
cd app
python -m unittest ./tests/test_app.py