From 222f90df02a8c2cf39ff56cadbd87e1f7876a814 Mon Sep 17 00:00:00 2001 From: prtsie Date: Sun, 5 Oct 2025 14:40:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BC=D0=B5=D0=BD=D1=8F=D0=BB=20CI?= =?UTF-8?q?=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=20=D0=BD=D0=BE=D1=80?= =?UTF-8?q?=D0=BC=D0=B0=D0=BB=D1=8C=D0=BD=D0=BE=20=D1=81=D0=B4=D0=B5=D0=BB?= =?UTF-8?q?=D0=B0=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/.drone.yml b/.drone.yml index e337b35..9b66163 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,18 +3,8 @@ 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 - +- name: test + image: mcr.microsoft.com/dotnet/sdk:8.0 + commands: + - dotnet build + - dotnet test