We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61ac89b commit 6a23de4Copy full SHA for 6a23de4
1 file changed
.github/workflows/ci.yml
@@ -31,5 +31,8 @@ jobs:
31
- name: Run check-deps in Demo Application
32
run: dotnet run --project Neolution.DotNet.Console.Demo --no-build --configuration '${{ env.BUILD_CONFIGURATION }}' -- check-deps
33
34
- - name: Test
35
- run: dotnet test --no-build --verbosity normal --configuration '${{ env.BUILD_CONFIGURATION }}'
+ - name: Unit Tests
+ run: dotnet test --no-build --verbosity normal --configuration '${{ env.BUILD_CONFIGURATION }}' --filter FullyQualifiedName~UnitTests
36
+
37
+ - name: Integration Tests
38
+ run: dotnet test --no-build --verbosity normal --configuration '${{ env.BUILD_CONFIGURATION }}' --filter FullyQualifiedName~IntegrationTests
0 commit comments