File tree 2 files changed +11
-19
lines changed
2 files changed +11
-19
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,15 @@ jobs:
30
30
- if : matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest'
31
31
run : make lint
32
32
- run : make vet
33
- - run : make tag-test
33
+ - run : make test
34
+ env :
35
+ FLAGS : -tags urfave_cli_no_docs
34
36
- run : make test
35
37
- run : make -C cmd/urfave-cli-genflags
36
38
- run : make check-binary-size
37
- - run : make tag-check-binary-size
39
+ env :
40
+ FLAGS : -tags urfave_cli_no_docs
41
+ - run : make check-binary-size
38
42
- run : make yamlfmt
39
43
- run : make diffcheck
40
44
- if : matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest'
59
63
- uses : actions/checkout@v3
60
64
- run : make ensure-gfmrun
61
65
- run : make gfmrun
66
+ env :
67
+ FLAGS : --walk docs/v2/
62
68
- run : make diffcheck
63
69
publish :
64
70
permissions :
71
77
- uses : actions/checkout@v3
72
78
with :
73
79
fetch-depth : 0
74
- - run : make ci-ensure-mkdocs
80
+ - run : make ensure-mkdocs
81
+ env :
82
+ FLAGS : --upgrade-pip
75
83
- run : make set-mkdocs-remote
76
84
env :
77
85
MKDOCS_REMOTE_GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -17,22 +17,6 @@ all: generate vet tag-test test check-binary-size tag-check-binary-size gfmrun y
17
17
% :
18
18
$(GO_RUN_BUILD ) $(GFLAGS ) $* $(FLAGS )
19
19
20
- .PHONY : tag-test
21
- tag-test :
22
- $(GO_RUN_BUILD ) -tags urfave_cli_no_docs test
23
-
24
- .PHONY : tag-check-binary-size
25
- tag-check-binary-size :
26
- $(GO_RUN_BUILD ) -tags urfave_cli_no_docs check-binary-size
27
-
28
- .PHONY : gfmrun
29
- gfmrun :
30
- $(GO_RUN_BUILD ) gfmrun --walk docs/v2/
31
-
32
- .PHONY : ci-ensure-mkdocs
33
- ci-ensure-mkdocs :
34
- $(GO_RUN_BUILD ) ensure-mkdocs --upgrade-pip
35
-
36
20
.PHONY : docs
37
21
docs :
38
22
mkdocs build
You can’t perform that action at this time.
0 commit comments