Skip to content

Commit

Permalink
Added flake8 lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Umair Khan committed Mar 23, 2024
1 parent bd42ef8 commit 903a24b
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: flake8 Lint

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

jobs:
flake8-lint:
runs-on: ubuntu-latest
name: Flake8 Lint
steps:
- name: Check out
uses: actions/checkout@v3

- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry lock --no-update
poetry install
pip install black
pip install isort
- name: Run Black
run: black ./ --config pyproject.toml

- name: Run Isort
run: isort .

- name: Setup flake8 annotations
uses: rbialon/flake8-annotations@v1

- name: Link and annotate with Flake8
uses: py-actions/flake8@v2
with:
ignore: "E203, E701" # Will add F401 to ignore list after testing
exclude: ".git, .github, build, dist, docs, venv, .venv, env, .env, .idea, .vscode"
max-line-length: "119"
path: "./"
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ exclude = '''
/(
\.git
| \.github
| .tox
| build
| dist
| docs
Expand Down

0 comments on commit 903a24b

Please sign in to comment.