Skip to content

Bump aiohttp from 3.9.1 to 3.9.4 #26

Bump aiohttp from 3.9.1 to 3.9.4

Bump aiohttp from 3.9.1 to 3.9.4 #26

Workflow file for this run

name: Linting
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-linting:
name: Run linting
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install linting dependencies
run: |
pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
black_auto_fix: false
flake8: true
flake8_auto_fix: false
- uses: isort/isort-action@v1.0.0