Skip to content

build(deps): bump uvicorn from 0.30.1 to 0.52.3 #47

build(deps): bump uvicorn from 0.30.1 to 0.52.3

build(deps): bump uvicorn from 0.30.1 to 0.52.3 #47

Workflow file for this run

name: CI Build & Verification
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Build Tools & Dependencies
run: |
python -m pip install --upgrade pip build setuptools wheel pytest
pip install -e .
- name: Verify Code Compilation
run: |
python -m py_compile owlbearag/*.py
- name: Build Wheel & Source Distribution
run: |
python -m build
- name: Upload Build Artifacts
uses: actions/upload-artifact@v7
with:
name: dist-python-${{ matrix.python-version }}
path: dist/