From 109f0ffbeee9a58d2aebc83a7bc58b4e1e386f2d Mon Sep 17 00:00:00 2001 From: Georgi Hristov Date: Sat, 16 May 2026 16:43:04 +0300 Subject: [PATCH] ci: run automated tests in GitHub Actions Add solution-level restore, build, and automated test execution to CI pipeline. --- .github/workflows/build.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05239d6..3f45a95 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,15 +12,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v5 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x - name: Restore - run: dotnet restore DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj + run: dotnet restore DebugProbe.AspNetCore.sln - name: Build - run: dotnet build DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj --no-restore --configuration Release + run: dotnet build DebugProbe.AspNetCore.sln --no-restore --configuration Release + + - name: Test + run: dotnet test DebugProbe.AspNetCore.sln --no-build --configuration Release