From b2dd4debcacfc92fb2ec4d2b0ed2574db75da84f Mon Sep 17 00:00:00 2001 From: SimonG Date: Wed, 18 Aug 2021 16:40:22 +0000 Subject: [PATCH] - add drone config --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d29d836 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +type: docker +name: CI +steps: + - name: Build + image: mcr.microsoft.com/dotnet/sdk:5.0 + commands: + - dotnet build + + - name: Test + image: mcr.microsoft.com/dotnet/sdk:5.0 + commands: + - dotnet test \ No newline at end of file