Allow gridfit to be enabled in global_ctx #975
This file contains hidden or 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 | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Super-Linter | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| statuses: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Load disabled linters | |
| run: > | |
| grep -v '^#' .github/linters/superlinter-disabled.env | |
| | grep '=' >> "$GITHUB_ENV" | |
| - name: Lint | |
| uses: super-linter/super-linter@v8 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} | |
| VALIDATE_ALL_CODEBASE: true | |
| IGNORE_GITIGNORED_FILES: true | |
| SAVE_SUPER_LINTER_SUMMARY: true | |
| VALIDATE_GIT_COMMITLINT: false | |
| FILTER_REGEX_EXCLUDE: "\ | |
| (wikidocs/\ | |
| |.*/acutest\\.h\ | |
| |build-qr-mode-optim-arrs\\.php\ | |
| |setup\\.py\ | |
| |build/\ | |
| |corpus/\ | |
| |contrib/Examples/\ | |
| |\\.claude/)" |