Skip to content

Bump aiohttp from 3.11.2 to 3.11.7 #8

Bump aiohttp from 3.11.2 to 3.11.7

Bump aiohttp from 3.11.2 to 3.11.7 #8

Workflow file for this run

name: Run pre-commit
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pre-commit==3.6.2
- name: Run pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --all-files --verbose --show-diff-on-failure