5c90cd23f6
Bumps [github/super-linter](https://github.com/github/super-linter) from 6 to 7. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/super-linter/compare/v6...v7) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
908 B
YAML
35 lines
908 B
YAML
name: Lint
|
|
|
|
on: [pull_request]
|
|
|
|
concurrency:
|
|
group: lint-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
permissions:
|
|
contents: read # for actions/checkout to fetch code
|
|
statuses: write # for github/super-linter to mark status of each linter run
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- run: mkdir super-linter.report
|
|
- name: Lint
|
|
uses: github/super-linter@v7
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_PYTHON_BLACK: true
|
|
VALIDATE_PYTHON_FLAKE8: true
|
|
PYTHON_FLAKE8_CONFIG_FILE: setup.cfg
|
|
VALIDATE_PYTHON_ISORT: true
|
|
PYTHON_ISORT_CONFIG_FILE: setup.cfg
|
|
VALIDATE_YAML: true
|