From fb4ed9423f888138804d9d313ea11a28b6cccd62 Mon Sep 17 00:00:00 2001 From: Krzysztof Nozderko Date: Mon, 10 Jun 2024 16:16:55 +0000 Subject: [PATCH] testing --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 29814227d..b73f814ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,15 +59,15 @@ jobs: - name: Build Driver run: | cd Snowflake.Data.Tests - dotnet restore - dotnet build -f ${{ matrix.dotnet }} -a x64 + dotnet restore --force + dotnet build -f ${{ matrix.dotnet }} - name: Run Tests run: | cd Snowflake.Data.Tests echo "printing exiting dlls" ls "bin\Debug\*" ls "bin\Debug\${{ matrix.dotnet }}\*" - dotnet-coverage collect "dotnet test --framework ${{ matrix.dotnet }} --no-build -l console;verbosity=normal -- RunConfiguration.TargetPlatform=x64" --output windows_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_coverage.xml --output-format cobertura --settings coverage.config + dotnet-coverage collect "dotnet test --framework ${{ matrix.dotnet }} --no-build -l console;verbosity=normal" --output windows_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_coverage.xml --output-format cobertura --settings coverage.config env: snowflake_cloud_env: ${{ matrix.cloud_env }} net_version: ${{ matrix.dotnet }}