From 64813d9c56d607f52f9464f90a8d86acff670eb7 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 21 Jun 2021 02:29:54 +0200 Subject: [PATCH] Oops that broke integration tests on Windows. --- .github/workflows/build-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2c61baecba..ef3fe5eed4 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -36,4 +36,7 @@ jobs: - name: Content.Tests run: dotnet test --no-build Content.Tests/Content.Tests.csproj -v n - name: Content.IntegrationTests - run: COMPlus_gcServer=1 dotnet test --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -v n + shell: pwsh + run: | + $env:COMPlus_gcServer=1 + dotnet test --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -v n