Update README.md #3
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: Linter | |
# Lint pushes to master or pull requests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Lint code | |
uses: docker://github/super-linter:latest | |
env: | |
VALIDATE_PYTHON_BLACK: false | |
VALIDATE_JSCPD: false | |
VALIDATE_PYTHON_ISORT: false | |
MULTI_STATUS: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |