diff --git a/.drone.yml b/.drone.yml index e337b35..9b66163 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,18 +3,8 @@ type: docker name: "Build and test" steps: - - name: restore-dependencies - image: mcr.microsoft.com/dotnet/sdk:8.0 - commands: - - dotnet restore - - - name: build-application - image: mcr.microsoft.com/dotnet/sdk:8.0 - commands: - - dotnet build -c Release --no-restore - - - name: run-tests - image: mcr.microsoft.com/dotnet/sdk:8.0 - commands: - - dotnet test -c Release --no-build --verbosity normal - +- name: test + image: mcr.microsoft.com/dotnet/sdk:8.0 + commands: + - dotnet build + - dotnet test