Skip to content

✨Add workflow to build and deploy app #11

✨Add workflow to build and deploy app

✨Add workflow to build and deploy app #11

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Unit Tests
run: python -m pytest -v