Skip to content

chore(deps): update gunicorn requirement from <22.0.0,>=21.2.0 to >=21.2.0,<24.0.0 #41

chore(deps): update gunicorn requirement from <22.0.0,>=21.2.0 to >=21.2.0,<24.0.0

chore(deps): update gunicorn requirement from <22.0.0,>=21.2.0 to >=21.2.0,<24.0.0 #41

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install UV
uses: astral-sh/setup-uv@v4
- name: Define a cache dependency glob
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Initialize the virtual environment
run: uv venv
- name: Add virtual environment to PATH
run: echo "${{ github.workspace }}/.venv/bin" >> $GITHUB_PATH
- name: Install the project
run: uv sync --extra cpu --frozen;
- name: Debug paths
run: |
pwd
ls -al
- name: Flynt f-string Formatter
run: >
flynt .
--line-length=79
--transform-concats
--fail-on-change
- name: mypy Static Type Checker
run: mypy inception
- name: Black Code Formatter
uses: psf/black@stable
- name: Isort
run: isort --diff .