Skip to content

build(deps): bump uvicorn from 0.29.0 to 0.31.1 #134

build(deps): bump uvicorn from 0.29.0 to 0.31.1

build(deps): bump uvicorn from 0.29.0 to 0.31.1 #134

Workflow file for this run

name: Code formatter
on: [push]
jobs:
foratter:
name: Code formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "*"
- run: pip install black isort
- name: Format code with black and isort
run: |
isort .
black .
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: ${{ github.actor }}
author_email: ${{ github.actor }}@users.noreply.github.com
message: "style: Format code with black and isort"
add: "."