diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index a424e62..632dd1c 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -75,6 +75,10 @@ jobs: - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v2 + # Execute all unit tests in the solution + - name: Execute unit tests + run: dotnet test + # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration diff --git a/MMExNotifier.Tests/MMExNotifier.Tests.csproj b/MMExNotifier.Tests/MMExNotifier.Tests.csproj index fdeb994..0f0e76c 100644 --- a/MMExNotifier.Tests/MMExNotifier.Tests.csproj +++ b/MMExNotifier.Tests/MMExNotifier.Tests.csproj @@ -7,7 +7,6 @@ false true - false