Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Bump aiohttp from 3.9.4 to 3.10.11 #20

Bump aiohttp from 3.9.4 to 3.10.11

Bump aiohttp from 3.9.4 to 3.10.11 #20

Workflow file for this run

on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install flake8
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: flake8 . --isolated --exclude=.cache,.venv,.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,**/migrations/** --ignore=E203,W503,E501,F401