diff --git a/.drone.yml b/.drone.yml new file mode 100755 index 0000000..b4295f8 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: default + +type: docker +steps: + - name: Build + image: deukhoofd/dotnet-builder + commands: + - dotnet build -c Release /p:platform=x64 + - name: Tests + image: deukhoofd/dotnet-builder + commands: + - dotnet test -v n /p:platform=x64 \ No newline at end of file