File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Spec CI
2+
3+ # Controls when the workflow will run
4+ on :
5+ # Triggers the workflow on push or pull request events but only for the main branch
6+ pull_request :
7+ branches : [ main ]
8+
9+ # ##############
10+ # Set the Job #
11+ # ##############
12+ jobs :
13+ build :
14+ name : Lint Code Base
15+ runs-on : ubuntu-latest
16+
17+ steps :
18+ - name : Checkout Code
19+ uses : actions/checkout@v2
20+ with :
21+ # Full git history is needed to get a proper list of changed files within `super-linter`
22+ fetch-depth : 0
23+
24+ # ###############################
25+ # Run Linter against code base #
26+ # ###############################
27+ - name : Lint Code Base
28+ uses : github/super-linter/slim@v4@v4
29+ env :
30+ VALIDATE_ALL_CODEBASE : true
31+ DEFAULT_BRANCH : main
32+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33+ VALIDATE_MARKDOWN : true
You can’t perform that action at this time.
0 commit comments