File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,18 @@ jobs:
34
34
- name : Generate Workflow Files (Test Feature)
35
35
shell : bash
36
36
run : |
37
- qlt test init --use-runner ubuntu-latest --num-threads 4 --language cpp --automation-type actions --development --overwrite-existing
37
+ if ! qlt test init --use-runner ubuntu-latest --num-threads 4 --language cpp --automation-type actions --development --overwrite-existing ; then
38
+ echo "Failed to generate test workflow files."
39
+ exit 1
40
+ fi
38
41
39
42
- name : Generate Workflow Files (Validation Feature)
40
43
shell : bash
41
44
run : |
42
- qlt validation init --use-runner ubuntu-latest --language cpp --automation-type actions --development --overwrite-existing
45
+ if ! qlt validation init --use-runner ubuntu-latest --language cpp --automation-type actions --development --overwrite-existing ; then
46
+ echo "Failed to generate validation workflow files."
47
+ exit 1
48
+ fi
43
49
44
50
- name : Check Git Clean Status
45
51
shell : bash
You can’t perform that action at this time.
0 commit comments