Skip to content

fix readme

fix readme #119

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
echo "Dependencies installed successfully."
pip install -e .
- name: Run tests
run: |
echo "Starting tests..."
pytest ./tests/unit.py
echo "Tests completed."
- name: Start the server
run: |
echo "Starting the server..."
uvicorn vlite.server:app --host 0.0.0.0 --port 8000 &
sleep 5 # Wait for the server to start