Skip to content

Bump fastapi from 0.112.4 to 0.115.0 (#42) #140

Bump fastapi from 0.112.4 to 0.115.0 (#42)

Bump fastapi from 0.112.4 to 0.115.0 (#42) #140

Workflow file for this run

name: Python Ruff
on:
push:
branches:
- main
paths:
- ".github/workflows/ruff.yml"
- "**.py"
- "poetry.lock"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/ruff.yml"
- "**.py"
- "poetry.lock"
- "pyproject.toml"
# https://github.com/chartboost/ruff-action
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Ruff lint
uses: chartboost/ruff-action@v1
with:
args: check --verbose
- name: Ruff format
uses: chartboost/ruff-action@v1
with:
args: format --check --verbose