Skip to content

1. fix ci-tests, 2. added the tests for the server #1

1. fix ci-tests, 2. added the tests for the server

1. fix ci-tests, 2. added the tests for the server #1

Workflow file for this run

name: CI Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
pytest tests
env:
JWT_SECRET_KEY: ${{ secrets.JWT_SECRET_KEY}}