Skip to content

Commit d6ef22d

Browse files
authored
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 16df4a3 commit d6ef22d

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
@@ -51,7 +51,7 @@ jobs:
5151

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

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

0 commit comments

Comments
 (0)