From 7c85d0f99ccef37db590f73df2d632a3f62bb9ae Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Fri, 25 Feb 2022 08:14:17 +0100 Subject: [PATCH] Go back to using dotnet test --- .github/workflows/build-ilspy.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-ilspy.yml b/.github/workflows/build-ilspy.yml index cee12ea52..8fa071a65 100644 --- a/.github/workflows/build-ilspy.yml +++ b/.github/workflows/build-ilspy.yml @@ -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: 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