diff --git a/.github/actions/contract-tests/action.yml b/.github/actions/contract-tests/action.yml index 5205065a..19762152 100644 --- a/.github/actions/contract-tests/action.yml +++ b/.github/actions/contract-tests/action.yml @@ -22,7 +22,7 @@ runs: - name: Build Contract Tests shell: bash - run: dotnet build /p:Configuration=debug ${{ inputs.service_project_file }} + run: dotnet build -p:Configuration=debug ${{ inputs.service_project_file }} - name: Launch Contract Tests id: launch-contract-tests diff --git a/.github/workflows/sdk-server-ci.yml b/.github/workflows/sdk-server-ci.yml index 048887f6..7516783d 100644 --- a/.github/workflows/sdk-server-ci.yml +++ b/.github/workflows/sdk-server-ci.yml @@ -23,10 +23,7 @@ jobs: project_file: pkgs/sdk/server/src/LaunchDarkly.ServerSdk.csproj test_project_file: pkgs/sdk/server/test/LaunchDarkly.ServerSdk.Tests.csproj - # Running contract tests on windows is currently cumbersome. - # Once that has been addressed, then running contract tests on windows should be considered. - uses: ./.github/actions/contract-tests - if: ${{ matrix.os != 'windows-latest' }} with: service_project_file: pkgs/sdk/server/contract-tests/TestService.csproj service_dll_file: pkgs/sdk/server/contract-tests/bin/debug/net6.0/ContractTestService.dll