nabweb: Upgrade page Version: always show commit even if no tags. #954
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: ✔️ Python lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
name: Python lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout pynab | |
uses: actions/checkout@v1 | |
- name: Run Python lint checks | |
uses: ricardochaves/[email protected] | |
with: | |
python-root-list: "nab*" | |
use-pylint: false | |
use-mypy: false | |
# https://github.com/PyCQA/pycodestyle/issues/373 | |
extra-pycodestyle-options: "--ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203 --exclude=*/migrations/" | |
extra-flake8-options: "--extend-ignore=E203,E501" | |
extra-black-options: "-l 79" | |
extra-isort-options: "-l 79 --profile black --indent 4" |