suppress inclusion of CF checker errors in short_summary.txt related … #267
Workflow file for this run
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
--- | |
# this action runs the super linter. It is a simple combination of | |
#various linters, written in bash, to help validate the source code | |
# of this repository. | |
name: linter | |
# this linter will run on pushes to the master branch and | |
# pull requests for the master branch | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Super-Linter | |
uses: github/super-linter/slim@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_PYTHON_PYLINT: false | |
VALIDATE_PYTHON_BLACK: false | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_JSCPD: false | |
VALIDATE_MARKDOWN: false | |
VALIDATE_PYTHON_ISORT: false | |
VALIDATE_PYTHON_MYPY: false | |
VALIDATE_BASH_EXEC: false |