[GSoC 2024] Integrating KinFin Proteome Cluster analyses into Genome Browsing environments #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: flake8 Lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
- master | |
jobs: | |
flake8: | |
runs-on: ubuntu-latest | |
name: flake8 Lint | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: flake8 Lint | |
uses: TrueBrain/actions-flake8@v2 | |
with: | |
ignore: E203,E501,E701,W503,W504 | |
max_line_length: 88 | |
path: src | |
plugins: flake8-black flake8-isort flake8-quotes | |
error_classes: E,H,I00,Q00 | |
extra_arguments: "--exclude kinfin.py,scripts" |