Update Gitea CI workflow to restore class library and test project dependencies separately
Some checks failed
CI/CD Pipeline / Build and Test (push) Failing after 1m6s
CI/CD Pipeline / Package Module (push) Has been skipped
CI/CD Pipeline / Create Release (push) Has been skipped

This commit is contained in:
2026-01-19 17:01:30 +03:00
parent 6541cf18c0
commit df30851a3a

View File

@@ -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