Skip to content

Commit

Permalink
Update workflow (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
nepp95 authored Mar 31, 2024
1 parent 842a1d6 commit da64e1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: .\Bin\Debug-windows-x86_64\EppoTesting\EppoTesting.exe --gtest_output="xml:${{env.RUNNER_TEMP}}\testoutput.xml"

- name: "Save test output"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: TestOutput-Debug
path: ${{env.RUNNER_TEMP}}/testoutput.xml
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
run: .\Bin\Release-windows-x86_64\EppoTesting\EppoTesting.exe --gtest_output="xml:${{env.RUNNER_TEMP}}\testoutput.xml"

- name: "Save test output"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: TestOutput-Release
path: ${{env.RUNNER_TEMP}}/testoutput.xml
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
run: .\Bin\Dist-windows-x86_64\EppoTesting\EppoTesting.exe --gtest_output="xml:${{env.RUNNER_TEMP}}\testoutput.xml"

- name: "Save test output"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: TestOutput-Dist
path: ${{env.RUNNER_TEMP}}/testoutput.xml
6 changes: 3 additions & 3 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ jobs:
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Debug
name: ThisIsTheName
name: Test Report Debug
path: '*.xml'
reporter: jest-junit

- name: "Create test report (Release)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Release
name: ThisIsTheName
name: Test Report Release
path: '*.xml'
reporter: jest-junit

- name: "Create test report (Dist)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Dist
name: ThisIsTheName
name: Test Report Dist
path: '*.xml'
reporter: jest-junit

0 comments on commit da64e1d

Please sign in to comment.