File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -258,14 +258,19 @@ jobs:
258258 - name : Build nested
259259 run : bazel build //nested:doxygen_a //nested:doxygen_b
260260 working-directory : examples/nested
261- - name : Check output
261+ - name : Check output (a)
262262 uses : andstor/file-existence-action@v3
263263 with :
264- files : examples/bazel-bin/nested/html/index.html
264+ files : examples/bazel-bin/nested/a/ html/index.html
265265 fail : true
266- - name : Check doxygen version in produced index.html
267- run : grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/nested/a/html/index.html
266+ - name : Check output (b)
267+ uses : andstor/file-existence-action@v3
268+ with :
269+ files : examples/bazel-bin/nested/b/html/index.html
270+ fail : true
271+ - name : Check doxygen version in produced index.html (a)
272+ run : grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/a/html/index.html
268273 shell : bash
269- - name : Check doxygen version in produced index.html
270- run : grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/nested/ b/html/index.html
274+ - name : Check doxygen version in produced index.html (b)
275+ run : grep "Doxygen $DEFAULT_DOXYGEN_VERSION" examples/bazel-bin/nested/b/html/index.html
271276 shell : bash
You can’t perform that action at this time.
0 commit comments