Skip to content

Commit

Permalink
check actual command
Browse files Browse the repository at this point in the history
  • Loading branch information
jsinglet committed Jan 16, 2024
1 parent aefbbe9 commit 53349b2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/internal-validate-workflow-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,18 @@ jobs:
- name: Generate Workflow Files (Test Feature)
shell: bash
run: |
qlt test init --use-runner ubuntu-latest --num-threads 4 --language cpp --automation-type actions --development --overwrite-existing
if ! qlt test init --use-runner ubuntu-latest --num-threads 4 --language cpp --automation-type actions --development --overwrite-existing ; then
echo "Failed to generate test workflow files."
exit 1
fi
- name: Generate Workflow Files (Validation Feature)
shell: bash
run: |
qlt validation init --use-runner ubuntu-latest --language cpp --automation-type actions --development --overwrite-existing
if ! qlt validation init --use-runner ubuntu-latest --language cpp --automation-type actions --development --overwrite-existing ; then
echo "Failed to generate validation workflow files."
exit 1
fi
- name: Check Git Clean Status
shell: bash
Expand Down

0 comments on commit 53349b2

Please sign in to comment.