Skip to content

cleaning up workflow for python tests #4

cleaning up workflow for python tests

cleaning up workflow for python tests #4

name: Commit Workflow
on:
push
jobs:
run-python-tests:
runs-on: ubuntu-latest
name: Python Unit Tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
working-directory: ./python-backend
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
pytest