diff --git a/.drone.yml b/.drone.yml index 59261de..39428d7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,12 +11,13 @@ steps: - name: Build image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - - dotnet build --configuration Release --no-restore ./src + - dotnet build --configuration Release ./src + - name: Test image: mcr.microsoft.com/dotnet/sdk:6.0 commands: - sed -i "s/127\.0\.0\.1/database/g" ./src/Tests/BirdsiteLive.DAL.Postgres.Tests/DataAccessLayers/Base/PostgresTestingBase.cs - - dotnet test --no-restore --verbosity minimal ./src + - dotnet test --verbosity minimal ./src services: - name: database