Skip to content

CD github action added; test push 3 #14

CD github action added; test push 3

CD github action added; test push 3 #14

name: CI-Backend
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- 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