Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit f13d77e

Browse files
committed
actions
1 parent f7a6c9a commit f13d77e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build
23-
run: dotnet build --no-restore
23+
run: dotnet build --no-restore --configuration Debug
2424
- name: Test
25-
run: dotnet test Community.Data.OData.Linq.xTests --no-build --verbosity normal
25+
run: dotnet test Community.Data.OData.Linq.xTests --no-build --verbosity normal --configuration Debug

Community.Data.OData.Linq.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1111
ProjectSection(SolutionItems) = preProject
1212
build.ps1 = build.ps1
1313
docker-compose.yml = docker-compose.yml
14+
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
1415
LICENSE = LICENSE
1516
localEnv.ps1 = localEnv.ps1
1617
pack.ps1 = pack.ps1
@@ -32,7 +33,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.OData.Linq.SolrNe
3233
EndProject
3334
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Comminuty.OData.CosmosDbTests", "Comminuty.OData.CosmosDbTests\Comminuty.OData.CosmosDbTests.csproj", "{893FED48-4BB6-436A-A55B-E9C0F0B4B9E2}"
3435
EndProject
35-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Benchmark", "Benchmark\Benchmark.csproj", "{3E18F5C4-832E-49DC-BF5B-37777F8FC0A6}"
36+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmark", "Benchmark\Benchmark.csproj", "{3E18F5C4-832E-49DC-BF5B-37777F8FC0A6}"
3637
EndProject
3738
Global
3839
GlobalSection(SolutionConfigurationPlatforms) = preSolution

tests.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
dotnet test -f net6.0
1+
dotnet restore
2+
dotnet build --no-restore --configuration Debug
3+
dotnet test Community.Data.OData.Linq.xTests -f net6.0 --no-build --verbosity normal --configuration Debug

0 commit comments

Comments
 (0)