From 05686c4cddb8c3b02083184c17756345f3b4fa2e Mon Sep 17 00:00:00 2001 From: ThompsonNye Date: Sat, 28 Dec 2024 17:20:10 +0100 Subject: [PATCH] Add own test step --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.drone.yml b/.drone.yml index 5f155cd..d505daf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -33,6 +33,19 @@ steps: path: /var/run depends_on: - compile + + - name: test2 + image: mcr.microsoft.com/dotnet/sdk:9.0 + environment: + CI_WORKSPACE: "/drone/src" + commands: + - curl https://get.docker.com | bash + - dotnet test --no-build + volumes: + - name: dockersock + path: /var/run + depends_on: + - compile - name: docker build and push image: docker:24.0.7