Browse Source

Go back to using dotnet test

pull/2642/head
Christoph Wille 3 years ago committed by Siegfried Pammer
parent
commit
7c85d0f99c
  1. 5
      .github/workflows/build-ilspy.yml

5
.github/workflows/build-ilspy.yml

@ -38,9 +38,6 @@ jobs: @@ -38,9 +38,6 @@ jobs:
- name: Install dotnet-format
run: dotnet tool install dotnet-format --global --version 5.1.225507
- name: Setup VSTest
uses: Malcolmnixon/Setup-VSTest@v4
- name: Get Version
id: version
shell: pwsh
@ -55,7 +52,7 @@ jobs: @@ -55,7 +52,7 @@ jobs:
run: msbuild ILSpy.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=$env:BuildPlatform
- name: Execute unit tests
run: vstest.console $env:Tests1 $env:Tests2 $env:Tests3
run: dotnet test $env:Tests1 $env:Tests2 $env:Tests3
env:
Tests1: ICSharpCode.Decompiler.Tests\bin\${{ matrix.configuration }}\net6.0-windows\win-x64\ICSharpCode.Decompiler.Tests.dll
Tests2: ILSpy.Tests\bin\${{ matrix.configuration }}\net6.0-windows\ILSpy.Tests.dll

Loading…
Cancel
Save