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