Skip to content

Commit

Permalink
ci: add lint-extras github workflow
Browse files Browse the repository at this point in the history
Signed-off-by: riya-singhal31 <[email protected]>
  • Loading branch information
riya-singhal31 authored and mergify[bot] committed Jul 11, 2023
1 parent 1131aa1 commit f46b656
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/lint-extras.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Lint Code Base
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
test-lint:
runs-on: ubuntu-latest

steps:
- name: checkout source
uses: actions/checkout@v3

- name: Lint Code Base
uses: super-linter/super-linter/slim@v5
env:
FILTER_REGEX_EXCLUDE: >
(.*vendor/.*)|(.*tools/vendor/.*)
VALIDATE_DOCKERFILE_HADOLINT: false
VALIDATE_GO: false
VALIDATE_JSCPD: false
VALIDATE_KUBERNETES_KUBECONFORM: false
VALIDATE_MARKDOWN: false
VALIDATE_PROTOBUF: false
VALIDATE_YAML: false

0 comments on commit f46b656

Please sign in to comment.