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

build(deps-dev): Bump flake8 from 3.9.2 to 6.1.0 #221

build(deps-dev): Bump flake8 from 3.9.2 to 6.1.0

build(deps-dev): Bump flake8 from 3.9.2 to 6.1.0 #221

Workflow file for this run

name: check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: flake8 --max-line-length=100