File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
/actionlint
2
2
/actionlint.exe
3
3
/.testtimestamp
4
- /.staticchecktimestamp
4
+ /.linttimestamp
5
5
/env.sh
6
6
/.github /actionlint.yaml
7
7
/.github /actionlint.yml
13
13
/playground-dist
14
14
/actionlint-workflow-ast
15
15
/.git-hooks /.timestamp
16
- /.idea
16
+ /.idea
Original file line number Diff line number Diff line change @@ -23,13 +23,14 @@ all: build test lint
23
23
24
24
t test : .testtimestamp
25
25
26
- .staticchecktimestamp : $(TESTS ) $(SRCS ) $(TOOL )
26
+ .linttimestamp : $(TESTS ) $(SRCS ) $(TOOL )
27
+ go vet ./...
27
28
staticcheck ./...
28
29
GOOS=js GOARCH=wasm staticcheck ./playground
29
30
go run ./scripts/check-checks -quiet ./docs/checks.md
30
- touch .staticchecktimestamp
31
+ touch .linttimestamp
31
32
32
- l lint : .staticchecktimestamp
33
+ l lint : .linttimestamp
33
34
34
35
popular_actions.go all_webhooks.go availability.go : $(GO_GEN_SRCS )
35
36
ifdef SKIP_GO_GENERATE
@@ -68,7 +69,7 @@ scripts/generate-actionlint-matcher/test/want.json: actionlint
68
69
./actionlint -format ' {{json .}}' ./testdata/err/one_error.yaml > scripts/generate-actionlint-matcher/test/want.json || true
69
70
70
71
c clean :
71
- rm -f ./actionlint ./.testtimestamp ./.staticchecktimestamp ./actionlint_fuzz-fuzz.zip ./man/actionlint.1 ./man/actionlint.1.html ./actionlint-workflow-ast
72
+ rm -f ./actionlint ./.testtimestamp ./.linttimestamp ./actionlint_fuzz-fuzz.zip ./man/actionlint.1 ./man/actionlint.1.html ./actionlint-workflow-ast
72
73
rm -rf ./corpus ./crashers
73
74
74
75
.git-hooks/.timestamp : .git-hooks/pre-push
You can’t perform that action at this time.
0 commit comments