Skip to content

Specify max line length in editor config to match flake8 settings #26

Specify max line length in editor config to match flake8 settings

Specify max line length in editor config to match flake8 settings #26

Workflow file for this run

name: Lint code
on: push
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Update setuptools pip and wheel
run: pip install -U setuptools pip wheel
- name: Install linting requirements
run: pip install -r requirements-lint.txt
- name: Lint code
run: flake8 --verbose