Added missing params

pull/39/head
Alex Evgrashin 2020-02-15 19:17:15 +03:00
parent e8e933a75c
commit 42ab44ec5f
1 changed files with 16 additions and 10 deletions

View File

@ -44,6 +44,21 @@ jobs:
testMode: editmode testMode: editmode
artifactsPath: artifacts/editmode artifactsPath: artifacts/editmode
# Install dotnet
- name: Installing dotnet
if: always()
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.1.202'
# Do the report magic
- run: dotnet ./UnityTestRunnerResultsReporter/UnityTestRunnerResultsReporter.dll \
--resultsPath=artifacts/editmode \
--resultXMLName=editmode-results.xml \
--unityLogName=editmode.log \
--reportdirpath=artifacts/editmode
if: always()
# Upload artifacts # Upload artifacts
- name: Upload test results - name: Upload test results
if: always() if: always()
@ -51,12 +66,3 @@ jobs:
with: with:
name: Test results (edit mode) name: Test results (edit mode)
path: artifacts/editmode path: artifacts/editmode
# Install dotnet
- name: Installing dotnet
if: always()
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.1.202'
- run: dotnet ./UnityTestRunnerResultsReporter/UnityTestRunnerResultsReporter.dll
if: always()