Skip to content

Commit 5bc6316

Browse files
keeskuba-moo
authored andcommitted
Workflows: Avoid the noisy style checker
Replace the style checker with a simpler syntax checker. For example, if I added a "k" before "import" in pw_poller.py: ./pw_poller.py:7:9: E999 SyntaxError: invalid syntax kimport configparser ^ 1 E999 SyntaxError: invalid syntax 1 Signed-off-by: Kees Cook <[email protected]>
1 parent fe02e0f commit 5bc6316

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
name: Lint checks
44
on: [push, pull_request]
55
jobs:
6-
yapf:
6+
lint:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: yapf
11-
uses: AlexanderMelde/[email protected]
10+
- uses: cclauss/Find-Python-syntax-errors-action@master

0 commit comments

Comments
 (0)