Running test for issue 52 and 53 on all python versions #92
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 | |
on: | |
push: | |
paths-ignore: | |
- '**.png' | |
- '**.jpg' | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
super-lint: | |
name: Lint code base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run Super-Linter | |
uses: github/super-linter@v4 | |
env: | |
DEFAULT_BRANCH: main | |
FILTER_REGEX_EXCLUDE: (.*sh|.git/.*|.Doc/Images/.*|.Tests/.*/Logs/.*) | |
VALIDATE_PYTHON_BLACK: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_CSS: false | |
VALIDATE_HTML: false | |
VALIDATE_JSCPD: false |