Skip to content

Bump uvicorn from 0.36.0 to 0.37.0 #22

Bump uvicorn from 0.36.0 to 0.37.0

Bump uvicorn from 0.36.0 to 0.37.0 #22

Workflow file for this run

name: Run Tests
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
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.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-asyncio
- name: Run tests
run: pytest