Linux PyQt tray application to control OctoPrint instances
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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`