We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06396bd commit 63431d8Copy full SHA for 63431d8
.github/workflows/superlinter.yml
@@ -0,0 +1,25 @@
1
+name: Super-Linter
2
+
3
+# Run this workflow every time a new commit pushed to your repository
4
+on: push
5
6
+jobs:
7
+ # Set the job key. The key is displayed as the job name
8
+ # when a job name is not provided
9
+ super-lint:
10
+ # Name the Job
11
+ name: Lint code base
12
+ # Set the type of machine to run on
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ # Checks out a copy of your repository on the ubuntu-latest machine
17
+ - name: Checkout code
18
+ uses: actions/checkout@v2
19
20
+ # Runs the Super-Linter action
21
+ - name: Run Super-Linter
22
+ uses: github/super-linter@v3
23
+ env:
24
+ DEFAULT_BRANCH: develop
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments