Skip to content

Tests branch (#14)

Tests branch (#14) #11

Workflow file for this run

name: Run Backend Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies and run tests
run: |
python -m pip install --upgrade pip
pip install .
pytest zt_backend/tests/