fixates 1.14.7 bullseye #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint-py | |
on: | |
push: | |
paths: | |
- "**/*.py" | |
- ".github/workflows/lint-py.yml" | |
pull_request: | |
paths: | |
- "**/*.py" | |
- ".github/workflows/lint-py.yml" | |
jobs: | |
lint-py: | |
name: lint (python) | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Install pylint | |
run: pip3 install pylint | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run linter | |
run: find . -name "*.py" | xargs pylint |