-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from SmartBear/Kevin-M-Johnson-patch-2
Update TestExecute Simple Test.yml
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,35 +17,35 @@ jobs: | |
runs-on: windows-latest | ||
permissions: write-all | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Job Startup | ||
- uses: actions/checkout@v3 | ||
- name: Job Startup | ||
run: | | ||
echo "Starting job [Event=${{ github.event_name }}]" | ||
echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!" | ||
- name: Download TestExecute | ||
- name: Download TestExecute | ||
run: | | ||
Invoke-WebRequest -Uri "${{ vars.TEST_EXECUTE_DOWNLOAD_URL }}" -OutFile ".\TE.exe" | ||
echo "TestExecute downloaded - ${{ vars.TEST_EXECUTE_DOWNLOAD_URL }}" | ||
- name: Show working folder content | ||
- name: Show working folder content | ||
run: dir | ||
shell: cmd | ||
- name: Install TestExecute | ||
- name: Install TestExecute | ||
run: .\TE.exe -SilentInstall | ||
shell: cmd | ||
- name: Env Variable for TestExecute bin folder | ||
- name: Env Variable for TestExecute bin folder | ||
run: set PATH_TE="${{ vars.TEST_EXECUTE_BIN }}" | ||
shell: cmd | ||
- name: Launch TestExecute | ||
- name: Launch TestExecute | ||
run: .\test-runner.bat ${{ secrets.TEST_EXECUTE_ACCESS_KEY }} ${{ inputs.project || 'Web' }} | ||
shell: cmd | ||
- name: JUnit Report from TestExecute | ||
- name: JUnit Report from TestExecute | ||
uses: dorny/[email protected] | ||
if: always() | ||
with: | ||
name: TestComplete JUnit Report | ||
path: logs/runlog.xml | ||
reporter: java-junit | ||
- name: GitHub Action Summary | ||
- name: GitHub Action Summary | ||
if: always() | ||
run: | | ||
type summary.md | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append |