From df30851a3a9124a46fba7c367f543e96fe0e4d7c Mon Sep 17 00:00:00 2001 From: Nikolay Tatarinov Date: Mon, 19 Jan 2026 17:01:30 +0300 Subject: [PATCH] Update Gitea CI workflow to restore class library and test project dependencies separately --- .gitea/workflows/ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1e86b2a..2ceed50 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -26,8 +26,11 @@ jobs: with: dotnet-version: '8.0.x' - - name: Restore dependencies - run: dotnet restore + - name: Restore class library + run: dotnet restore classlib/classlib.csproj + + - name: Restore test project + run: dotnet restore classlib.tests/classlib.tests.csproj - name: Build class library run: dotnet build classlib/classlib.csproj --configuration Release --no-restore