Skip to content

Commit 511e302

Browse files
echoixSergio0694
authored andcommitted
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`
1 parent a2c8773 commit 511e302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
# Run tests
5454
- name: Test solution
55-
run: dotnet test --no--build -c ${{matrix.configuration}} -l "trx;LogFileName=VSTestResults.trx"
55+
run: dotnet test --no-build -c ${{matrix.configuration}} -l "trx;LogFileName=VSTestResults.trx"
5656

5757
# Publish test results
5858
- name: Publish test results

0 commit comments

Comments
 (0)