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 7148ca8 commit e631e87Copy full SHA for e631e87
.github/workflows/main_apicolombia.yml
@@ -28,6 +28,17 @@ jobs:
28
- name: Build with dotnet
29
run: dotnet build --configuration Release
30
31
+ - name: Test with dotnet
32
+ with:
33
+ working-directory: ./api.Tests
34
+ run: dotnet test --no-restore --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}"
35
+
36
+ - name: Upload dotnet test results
37
+ uses: actions/upload-artifact@v4
38
39
+ name: dotnet-results-${{ matrix.dotnet-version }}
40
+ path: TestResults-${{ matrix.dotnet-version }}
41
42
- name: dotnet publish
43
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
44
0 commit comments