Update README.md #116
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- master | |
- gh/** | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Chekout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
cache-dependency-path: '**/requirements*.txt' | |
- name: Install Python (development) dependencies | |
run: | | |
pip install -r requirements-dev.txt | |
- name: Run flake8 | |
run: | | |
flake8 | |
- name: Run black | |
if: always() | |
run: | | |
black | |
- name: Run pylint | |
if: always() | |
run: | | |
pylint --exit-zero |