1 parent 0d9b0e6 commit 1643e78Copy full SHA for 1643e78
1 file changed
.github/workflows/ci.yml
@@ -24,8 +24,17 @@ jobs:
24
- name: Build
25
run: dotnet build Trust-Finance.sln --configuration Release --no-restore
26
27
- - name: Test
28
- run: dotnet test Trust-Finance.sln --configuration Release --no-build --verbosity normal
+ - name: Unit tests
+ run: >
29
+ dotnet test Trust-Finance.Tests/Trust-Finance.Tests.csproj
30
+ --configuration Release --no-build --verbosity normal
31
+
32
+ # Testcontainers starts a real SQL Server via the Docker daemon that is
33
+ # preinstalled on the GitHub-hosted runners.
34
+ - name: Integration tests (Testcontainers + SQL Server)
35
36
+ dotnet test Trust-Finance.IntegrationTests/Trust-Finance.IntegrationTests.csproj
37
38
39
web:
40
name: Web (build)
0 commit comments