Skip to content

chore(deps): bump uvicorn from 0.48.0 to 0.49.0 (#70) #179

chore(deps): bump uvicorn from 0.48.0 to 0.49.0 (#70)

chore(deps): bump uvicorn from 0.48.0 to 0.49.0 (#70) #179

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest
pytest