From 408bba500d7c44fd462d8fb1a17cd19dc35aa89e Mon Sep 17 00:00:00 2001 From: SimonG Date: Wed, 18 Aug 2021 16:42:39 +0000 Subject: [PATCH] - add drone config --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..8b0de99 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +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