Linux PyQt tray application to control OctoPrint instances
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.

pylint.yml 444B

123456789101112131415161718192021
  1. name: Pylint
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - name: Set up Python 3.9
  9. uses: actions/setup-python@v2
  10. with:
  11. python-version: 3.9
  12. - name: Install dependencies
  13. run: |
  14. python -m pip install --upgrade pip
  15. pip install pylint
  16. - name: Analysing the code with pylint
  17. run: |
  18. cd src
  19. pylint `ls -R|grep .py$|xargs`