jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
471B

  1. ---
  2. name: Test wscript files
  3. on:
  4. push:
  5. branches: [master, develop]
  6. pull_request:
  7. branches: [master, develop]
  8. jobs:
  9. build:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v4
  13. - name: Install dependencies
  14. run: |
  15. sudo apt-get update -qq
  16. sudo apt-get install -qqy flake8 findutils
  17. - name: Lint with flake8
  18. run: find . -type f \( -iname wscript -or -iname jack_control \) -exec flake8 {} \;