Skip to content

Commit 3d18d37

Browse files
committed
use correct flake8 in CI env
1 parent 200422d commit 3d18d37

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,16 @@ jobs:
3838
steps:
3939
- name: Check out source repository
4040
uses: actions/checkout@v3
41+
4142
- name: Set up Python environment
4243
uses: actions/setup-python@v4
4344
with:
4445
python-version: '3.11'
4546
cache: 'pip'
47+
4648
- name: Install dependencies
4749
run: |
4850
pip install flake8 flake8-black flake8-isort
51+
4952
- name: Run linter
50-
run: make lint
53+
run: flake8 --count --statistics redbeat tests

0 commit comments

Comments
 (0)