File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ The action has 8 configuration knobs:
28
28
generate an [SVG coverage chart][4].
29
29
- `amend` : default `false`,
30
30
amend your Wiki, avoiding a series of “Update coverage” commits.
31
- - `reuse-go` : default `false`,
32
- reuse Go as setup by the caller action
33
- (for performance, caching, configurability).
34
31
35
32
Also, consider :
36
33
- running this step _after_ your tests run
@@ -55,7 +52,6 @@ Complete example:
55
52
report: true
56
53
chart: true
57
54
amend: true
58
- reuse-go: true
59
55
if: |
60
56
matrix.os == 'ubuntu-latest' &&
61
57
github.event_name == 'push'
Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ inputs:
25
25
description : Amend wiki, avoiding spurious commits.
26
26
default : false
27
27
reuse-go :
28
- description : Reuse Go as setup by the caller action.
29
- default : false
28
+ deprecationMessage : Go install is always reused.
30
29
31
30
runs :
32
31
using : composite
43
42
repository : ${{github.repository}}.wiki
44
43
path : ./.github/wiki/
45
44
46
- - name : Set up Go
47
- uses : actions/setup-go@v4
48
- if : inputs.reuse-go != 'true'
49
-
50
45
- name : Generate coverage report
51
46
shell : bash
52
47
env :
You can’t perform that action at this time.
0 commit comments