Allow log be directed to stdout instead of syslog #176
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: Lint codebase | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint codebase | |
uses: super-linter/super-linter/slim@v6 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: / | |
IGNORE_GITIGNORED_FILES: true | |
VALIDATE_BASH: true | |
VALIDATE_CLANG_FORMAT: true | |
VALIDATE_DOCKERFILE_HADOLINT: true | |
VALIDATE_MARKDOWN: true | |
VALIDATE_SHELL_SHFMT: true | |
VALIDATE_YAML: true |