Op#3648 reduce memory consumption in track parser #1946
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: super-linter | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
on: pull_request | |
jobs: | |
lint: | |
name: Lint many languages with super-linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Lint Code Base | |
uses: github/super-linter/slim@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: master | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_PYTHON_PYLINT: false | |
VALIDATE_PYTHON_MYPY: false | |
VALIDATE_JSCPD: false | |
VALIDATE_PYTHON_BLACK: false | |
LINTER_RULES_PATH: / | |
PYTHON_FLAKE8_CONFIG_FILE: .flake8 | |
PYTHON_ISORT_CONFIG_FILE: pyproject.toml | |
YAML_CONFIG_FILE: .yamllint.yaml |