File tree Expand file tree Collapse file tree 2 files changed +69
-0
lines changed
Expand file tree Collapse file tree 2 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+
3+ # -------------------------------------------------------------------------------------------------
4+ # Job Name
5+ # -------------------------------------------------------------------------------------------------
6+ name : lint
7+
8+
9+ # -------------------------------------------------------------------------------------------------
10+ # When to run
11+ # -------------------------------------------------------------------------------------------------
12+ on :
13+ # Runs on Pull Requests
14+ pull_request :
15+
16+
17+ # -------------------------------------------------------------------------------------------------
18+ # What to run
19+ # -------------------------------------------------------------------------------------------------
20+ jobs :
21+ # -----------------------------------------------------------------------------------------------
22+ # JOB (1/1): Lint
23+ # -----------------------------------------------------------------------------------------------
24+ lint :
25+ name : lint
26+ runs-on : ubuntu-latest
27+ steps :
28+
29+ - name : " [SETUP] Checkout repository"
30+ uses : actions/checkout@v3
31+ with :
32+ fetch-depth : 0
33+
34+ - name : Lint Files
35+ 36+ with :
37+ command : |
38+ make -f Makefile.lint lint-files
39+
40+ - name : Lint Yaml
41+ 42+ with :
43+ command : |
44+ make -f Makefile.lint lint-yaml
45+
46+ - name : Lint JSON
47+ 48+ with :
49+ command : |
50+ make -f Makefile.lint lint-json
51+
52+ - name : Lint Bash
53+ 54+ with :
55+ command : |
56+ make -f Makefile.lint lint-bash
Original file line number Diff line number Diff line change 1+ ---
2+ extends: default
3+
4+ ignore: |
5+ .yamllint
6+
7+
8+ rules:
9+ truthy:
10+ allowed-values: ['true', 'false']
11+ check-keys: False
12+ level: error
13+ line-length: disable
You can’t perform that action at this time.
0 commit comments