Skip to content

Commit

Permalink
upload artifact of test results as html
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaa committed Jul 15, 2023
1 parent dcbfa5d commit 069cd00
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: windows-latest

steps:
- name: Checkout Wave
- name: Checkout BlueM.Wave
uses: actions/checkout@v3
with:
path: BlueM.Wave
Expand All @@ -30,4 +30,10 @@ jobs:
- name: Build Wave.Tests
run: msbuild BlueM.Wave\tests\Wave.Tests.vbproj -restore -property:Platform=x64 -property:Configuration=Debug
- name: Run Tests
run: vstest.console.exe BlueM.Wave\tests\bin\x64\Debug\Wave.Tests.dll /Platform:x64
run: |
vstest.console.exe BlueM.Wave\tests\bin\x64\Debug\Wave.Tests.dll /Platform:x64 /ResultsDirectory:TestResults /Logger:html
- name: Upload test results
uses: actions/upload-artifact@v3
with:
name: test-results
path: TestResults

0 comments on commit 069cd00

Please sign in to comment.