File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 53
53
lint :
54
54
strategy :
55
55
matrix :
56
- working_dir : ['', 'cmd']
56
+ working_dir : ['. ', 'cmd']
57
57
runs-on : ubuntu-20.04
58
58
steps :
59
59
- uses : actions/checkout@v4
62
62
version : v${{ env.GOLANGCI_LINT_VERSION }}
63
63
working-directory : ${{ matrix.working_dir }}
64
64
65
+ yamllint :
66
+ name : yamllint-lint
67
+ runs-on : ubuntu-20.04
68
+ steps :
69
+ - uses : actions/checkout@v4
70
+ - run : yamllint .
71
+
65
72
shellcheck :
66
73
runs-on : ubuntu-20.04
67
74
container : koalaman/shellcheck-alpine:v0.10.0
Original file line number Diff line number Diff line change
1
+ extends : default
2
+
3
+ rules :
4
+ trailing-spaces :
5
+ # issue templates intentionally have some whitespace
6
+ ignore : .github/ISSUE_TEMPLATE/
7
+
8
+ document-start : disable # preference, can enable if desired
9
+ comments : disable # doesn't like in-line comments like this
10
+ line-length : disable # hard to enforce <80 chars for some cmds
11
+ truthy :
12
+ allowed-values : ['true', 'false', 'on']
You can’t perform that action at this time.
0 commit comments