Skip to content

chore: initialize pytest and create workflow #2

chore: initialize pytest and create workflow

chore: initialize pytest and create workflow #2

Workflow file for this run

name: pytest
on:
push:
branches: [main, develop, 73-initialize-pytest]
pull_request:
branches: [main, develop, 73-initialize-pytest]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
cd server
pip install -r requirements.txt
- name: Run pytest
run: |
cd server
pytest