Поменял CI конфиг нормально сделал
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-05 14:40:55 +03:00
parent aae4b28089
commit 222f90df02

View File

@@ -3,18 +3,8 @@ type: docker
name: "Build and test" name: "Build and test"
steps: steps:
- name: restore-dependencies - name: test
image: mcr.microsoft.com/dotnet/sdk:8.0 image: mcr.microsoft.com/dotnet/sdk:8.0
commands: commands:
- dotnet restore - dotnet build
- dotnet test
- name: build-application
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet build -c Release --no-restore
- name: run-tests
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet test -c Release --no-build --verbosity normal