Skip to content

Fix: linter errors and lincensing infomration (#1036) #3061

Fix: linter errors and lincensing infomration (#1036)

Fix: linter errors and lincensing infomration (#1036) #3061

Workflow file for this run

name: Lint Code Base
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter/slim@4e51915f4a812abf59fed160bb14595c0a38a9e7 # v6
env:
DEFAULT_BRANCH: main
VALIDATE_CPP: false
VALIDATE_JSCPD: false
VALIDATE_JSON: false
VALIDATE_CHECKOV: false
VALIDATE_PYTHON_MYPY: false
VALIDATE_PYTHON_PYLINT: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LOG_LEVEL: WARN