Skip to content

Commit f40ff1d

Browse files
authored
Create superlinter.yml
Add Super-Linter workflow for multi-language code linting.
1 parent 86a15b4 commit f40ff1d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/superlinter.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Super-Linter
2+
3+
on: push
4+
5+
jobs:
6+
super-lint:
7+
name: Lint code base
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v3
12+
13+
- name: Run Super-Linter
14+
uses: github/super-linter@latest
15+
env:
16+
DEFAULT_BRANCH: main
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
VALIDATE_MARKDOWN: false

0 commit comments

Comments
 (0)