File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ # #################################################
2+
3+ # Run Mr Coxall's Super Linter against code base #
4+
5+ # #################################################
6+
7+ ---
8+
9+ name : Mr Coxall's Super Linter
10+
11+ on : [push, pull_request]
12+
13+ jobs :
14+
15+ run-linters :
16+
17+ name : Mr Coxall's Super Linter
18+
19+ runs-on : ubuntu-latest
20+
21+ steps :
22+
23+ - name : Check out Git repository 🚦
24+
25+ uses : actions/checkout@main
26+
27+ - name : Run GitHub Super Linter 🚀
28+
29+ uses : mr-coxall/super-linter@master
30+
31+ env :
32+
33+ VALIDATE_ALL_CODEBASE : true
34+
35+ LINTER_RULES_PATH : /
36+
37+ VALIDATE_CLANG_FORMAT : false
38+
39+ VALIDATE_JAVASCRIPT_STANDARD : false
40+
41+ VALIDATE_GOOGLE_JAVA_FORMAT : false
42+
43+ VALIDATE_PYTHON_FLAKE8 : false
44+
45+ VALIDATE_GITLEAKS : false # for secrets detection
46+
47+ VALIDATE_JSON : false
48+
49+ VALIDATE_JSCPD : false # for copy and paste detection
50+
51+ DEFAULT_BRANCH : main
52+
53+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments