From 5b4ee67c23392dc76b5b1978d29a7f43f7877dbd Mon Sep 17 00:00:00 2001 From: prtsie Date: Sun, 5 Oct 2025 14:22:06 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20dr?= =?UTF-8?q?one.yml=20=D0=B4=D0=BB=D1=8F=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- drone.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..e337b35 --- /dev/null +++ b/drone.yml @@ -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 +