From 511e30264c72759b6d1b2cd3ed665d2b882bf622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edouard=20Choini=C3=A8re?= <27212526+echoix@users.noreply.github.com> Date: Wed, 5 Nov 2025 15:31:11 -0500 Subject: [PATCH] Remove extra dash in `--no-build` argument in dotnet test invokation New CI workflow fails because `--no--build` is passed to `dotnet test`. It should be `--no-build` --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 623d816b..1b4db09a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -52,7 +52,7 @@ jobs: # Run tests - name: Test solution - run: dotnet test --no--build -c ${{matrix.configuration}} -l "trx;LogFileName=VSTestResults.trx" + run: dotnet test --no-build -c ${{matrix.configuration}} -l "trx;LogFileName=VSTestResults.trx" # Publish test results - name: Publish test results