Skip to content

fix(deps): Update dependency structlog to v24.4.0 #637

fix(deps): Update dependency structlog to v24.4.0

fix(deps): Update dependency structlog to v24.4.0 #637

Workflow file for this run

name: Lint with Black
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Check formatting
run: make fmt-check