summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2022-04-13 21:03:13 +0200
committerFilipe Coelho <falktx@falktx.com>2022-04-13 22:57:52 +0100
commitb5ca229866787c3ab9ab06922c221e538708df0e (patch)
treed1623cff22b27904e949514b45a6ef8e89516a52
parent88102ec4a73ecb18b58198193905aefe6b378ce5 (diff)
downloadjack2-b5ca229866787c3ab9ab06922c221e538708df0e.tar.gz
Run flake8 on all wscript files and on jack_control
.github/workflows/lint.yml: Ensure that flake8 in CI is run on all wscript files and on jack_control.
-rw-r--r--.github/workflows/lint.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 3ac7c14f..eeeb0227 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,6 +1,6 @@
---
-name: Test files
+name: Test wscript files
on:
push:
@@ -17,6 +17,6 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
- sudo apt-get install flake8
+ sudo apt-get install flake8 findutils
- name: Lint with flake8
- run: flake8
+ run: find . -type f \( -iname wscript -or -iname jack_control \) -exec flake8 {} \;