We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f12f881 commit 140a99fCopy full SHA for 140a99f
1 file changed
.github/workflows/unit-test.yml
@@ -1,4 +1,4 @@
1
-name: Unit Test & Reports
+name: Unit Test
2
on:
3
pull_request:
4
push:
@@ -11,14 +11,6 @@ jobs:
11
uses: actions/checkout@v4.2.2
12
- name: Setup .NET Core @ Latest
13
uses: actions/setup-dotnet@v4.3.0
14
- - name: Build solution and run unit test
15
- run: sh ./Scripts/run-unit-test-case.sh
16
- - name: Test Report
17
- uses: dorny/test-reporter@v1
18
- if: success() || failure()
19
- with:
20
- name: DotNet unit Tests
21
- path: ./Contentstack.Core.Unit.Tests/TestResults/Report-Contentstack-Delivery-DotNet-Unit-Test-Case.trx
22
- reporter: dotnet-trx
23
- fail-on-error: true
+ - name: Run unit tests
+ run: dotnet test Contentstack.Core.Unit.Tests/Contentstack.Core.Unit.Tests.csproj --verbosity normal
24
0 commit comments