We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 140a99f commit 08ae260Copy full SHA for 08ae260
1 file changed
.github/workflows/unit-test.yml
@@ -11,6 +11,10 @@ jobs:
11
uses: actions/checkout@v4.2.2
12
- name: Setup .NET Core @ Latest
13
uses: actions/setup-dotnet@v4.3.0
14
+ - name: Restore dependencies
15
+ run: dotnet restore Contentstack.Net.sln
16
+ - name: Build solution
17
+ run: dotnet build Contentstack.Net.sln --no-restore --configuration Debug
18
- name: Run unit tests
- run: dotnet test Contentstack.Core.Unit.Tests/Contentstack.Core.Unit.Tests.csproj --verbosity normal
19
+ run: dotnet test Contentstack.Core.Unit.Tests/Contentstack.Core.Unit.Tests.csproj --no-build --verbosity normal --configuration Debug
20
0 commit comments