Skip to content

Commit

Permalink
Update flake8 workflow to one that should run
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Oct 10, 2023
1 parent 1fca766 commit 0919278
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.6
uses: actions/setup-python@v1
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.6
python-version: "3.10"
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --ignore=E402,W503,W504,F541 --max-line-length=100 --show-source --statistics
flake8 . --exclude=docs --count --ignore=E402,W503,W504,F541 --max-line-length=100 --show-source --statistics

0 comments on commit 0919278

Please sign in to comment.