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