Skip to content

Commit 31fd539

Browse files
ci: run automated tests in GitHub Actions
Add solution-level automated test execution to GitHub Actions CI pipeline.
2 parents 266f8df + 109f0ff commit 31fd539

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v4
1616

1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v5
18+
uses: actions/setup-dotnet@v4
1919
with:
2020
dotnet-version: 8.0.x
2121

2222
- name: Restore
23-
run: dotnet restore DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj
23+
run: dotnet restore DebugProbe.AspNetCore.sln
2424

2525
- name: Build
26-
run: dotnet build DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj --no-restore --configuration Release
26+
run: dotnet build DebugProbe.AspNetCore.sln --no-restore --configuration Release
27+
28+
- name: Test
29+
run: dotnet test DebugProbe.AspNetCore.sln --no-build --configuration Release

0 commit comments

Comments
 (0)