diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..08c3daa --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: default + +type: docker +steps: + - name: Build + image: dotnet/core/sdk:3.1 + commands: + - dotnet build -c Release + - name: Tests + image: dotnet/core/sdk:3.1 + commands: + - dotnet test -v n \ No newline at end of file