Linux PyQt tray application to control OctoPrint instances
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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`