File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # ##########################
3+ # ##########################
4+ # # Linter GitHub Actions ##
5+ # ##########################
6+ # ##########################
7+ name : Lint Code Base
8+
9+ #
10+ # Documentation:
11+ # https://help.github.com/en/articles/workflow-syntax-for-github-actions
12+ #
13+
14+ # ############################
15+ # Start the job on all push #
16+ # ############################
17+ on :
18+ push :
19+ branches-ignore :
20+ - ' master'
21+
22+ # ##############
23+ # Set the Job #
24+ # ##############
25+ jobs :
26+ build :
27+ # Name the Job
28+ name : Lint Code Base
29+ # Set the agent to run on
30+ runs-on : ubuntu-latest
31+
32+ # #################
33+ # Load all steps #
34+ # #################
35+ steps :
36+ # #########################
37+ # Checkout the code base #
38+ # #########################
39+ - name : Checkout Code
40+ uses : actions/checkout@v2
41+
42+ # ###############################
43+ # Run Linter against code base #
44+ # ###############################
45+ - name : Lint Code Base
46+ uses : docker://github/super-linter:v2.2.0
47+ env :
48+ VALIDATE_ALL_CODEBASE : false
49+ VALIDATE_ANSIBLE : false
50+ ...
You can’t perform that action at this time.
0 commit comments