ci: enable super-linter #18
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
--- | |
name: super-linter | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
permissions: {} | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout with history | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Work around super-linter | |
shell: bash | |
run: | | |
# Work-around for config file detection | |
cp .github/linters/.commitlintrc.yml .commitlintrc.yml | |
# Work-around for SHA detection | |
# https://github.com/super-linter/super-linter/issues/6316#issuecomment-2510205626 | |
if [[ '${{ github.event_name }}' == 'pull_request' ]]; then | |
echo 'GITHUB_BEFORE_SHA=${{ github.event.pull_request.base.sha }}' >> $GITHUB_ENV | |
fi | |
- name: Run super-linter | |
uses: super-linter/super-linter/[email protected] | |
env: | |
VALIDATE_ALL_CODEBASE: ${{ github.event_name != 'pull_request' }} | |
# language configurations | |
VALIDATE_CLANG_FORMAT: true | |
VALIDATE_GIT_COMMITLINT: true | |
VALIDATE_MARKDOWN: true | |
VALIDATE_YAML: true | |
# misc configurations | |
ENFORCE_COMMITLINT_CONFIGURATION_CHECK: true | |
MULTI_STATUS: false # disable status report | |
SUPPRESS_POSSUM: true | |
VALIDATE_GITHUB_ACTIONS: true | |
VALIDATE_GITLEAKS: true |