Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid using pytest-flake8 plugin #650

Merged
merged 3 commits into from
Nov 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add flake8 lint step to CI/CD pipeline
  • Loading branch information
juhoinkinen committed Nov 25, 2022
commit 2e812ec4ac8e1bf133265d488ed7721d87be4c79
6 changes: 5 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ jobs:

lint:
runs-on: ubuntu-latest
name: lint with isort & Black
name: lint with isort, Black & flake8
steps:
- uses: actions/checkout@v3
- uses: isort/isort-action@f14e57e1d457956c45a19c05a89cccdf087846e5 # v1.1.0
- uses: psf/black@6b42c2b8c9f9bd666120a2c19b8da509fe477f27
- name: Lint with flake8
run: |
pip install flake8
flake8

test:
runs-on: ubuntu-latest
Expand Down