File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 31
31
uses : ./go/actions/test
32
32
with :
33
33
run-code-checks : true
34
-
35
- qhelp :
36
- name : Test qhelp conversion
37
- runs-on : ubuntu-latest
38
- steps :
39
- - name : Compile qhelp files to markdown
40
- shell : bash
41
- run : |
42
- cd go
43
- env QHELP_OUT_DIR=qhelp-out make qhelp-to-markdown
44
- - name : Upload qhelp markdown
45
- uses : actions/upload-artifact@v3
46
- with :
47
- name : qhelp-markdown
48
- path : go/qhelp-out/**/*.md
Original file line number Diff line number Diff line change 49
49
cd go
50
50
make check-formatting
51
51
52
+ - name : Compile qhelp files to markdown
53
+ if : inputs.run-code-checks == 'true' && !cancelled()
54
+ id : markdown
55
+ shell : bash
56
+ run : |
57
+ cd go
58
+ env QHELP_OUT_DIR=qhelp-out make qhelp-to-markdown
59
+
60
+ - name : Upload qhelp markdown
61
+ if : inputs.run-code-checks == 'true' && !cancelled()
62
+ uses : actions/upload-artifact@v3
63
+ with :
64
+ name : qhelp-markdown
65
+ path : go/qhelp-out/**/*.md
66
+
52
67
- name : Cache compilation cache
53
68
id : query-cache
54
69
uses : ./.github/actions/cache-query-compilation
You can’t perform that action at this time.
0 commit comments