Skip to content

feature: add github workflow to run pytests #1

feature: add github workflow to run pytests

feature: add github workflow to run pytests #1

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run pytest
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: pip install -r requirements.txt
- name: Run pytest
working-directory: ./app
run: |
pytest