Browse Source

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.
tags/v1.9.21
David Runge Filipe Coelho <falktx@falktx.com> 2 years ago
parent
commit
b5ca229866
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      .github/workflows/lint.yml

+ 3
- 3
.github/workflows/lint.yml View File

@@ -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 {} \;

Loading…
Cancel
Save