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 committed Jul 10, 2023
1 parent 4932221 commit 9653395
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint-extras.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
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: github/super-linter@v5
env:
FILTER_REGEX_EXCLUDE: >
(.*vendor/.*)|(.*tools/vendor/.*)

0 comments on commit 9653395

Please sign in to comment.