Переименовал файл для CI
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-10-05 14:25:24 +03:00
parent 5b4ee67c23
commit fa87a56ad1

20
.drone.yml Normal file
View File

@@ -0,0 +1,20 @@
kind: pipeline
type: docker
name: "Build and test"
steps:
- name: restore-dependencies
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet restore
- 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