We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13aecfd commit bbe20cdCopy full SHA for bbe20cd
.github/workflows/ci.yml
@@ -271,6 +271,10 @@ jobs:
271
with:
272
global-json-file: global.json
273
274
- - name: Build & run the unit tests
+ - name: Build the unit tests
275
run: |
276
- dotnet test $env:UNIT_TESTS_PROJECT_PATH -c $env:CONFIGURATION -a $env:PLATFORM
+ dotnet build $env:UNIT_TESTS_PROJECT_PATH -c $env:CONFIGURATION -a $env:PLATFORM
277
+
278
+ - name: Run the unit tests
279
+ run: |
280
+ dotnet test $env:UNIT_TESTS_PROJECT_DIR\bin\**\Files.App.UnitTests.dll
0 commit comments