Skip to content

Commit 83e0e39

Browse files
committed
workflows: check pycodestyle (previously pep8)
Signed-off-by: Julian Oes <julian@oes.ch>
1 parent 08c093c commit 83e0e39

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ jobs:
2828
- name: Install pip
2929
run: sudo apt-get install -y python3-pip
3030

31+
- name: Check style
32+
run: |
33+
python3 -m pip install pycodestyle
34+
export PATH=$PATH:$HOME/.local/bin
35+
pycodestyle examples/*
36+
3137
- name: Install prerequisites
3238
run: |
3339
python3 -m pip install -r requirements.txt -r requirements-dev.txt -r requirements-docs.txt

0 commit comments

Comments
 (0)