Skip to content

build(deps): bump httpx from 0.25.1 to 0.25.2 #23

build(deps): bump httpx from 0.25.1 to 0.25.2

build(deps): bump httpx from 0.25.1 to 0.25.2 #23

Workflow file for this run

name: Code formatter
on: [push]
jobs:
linter_name:
name: Code formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format code with black and isort
run: |
pip install black isort
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: "."