diff --git a/.drone.yml b/.drone.yml index a0b0b25..a9fa30d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,4 +19,15 @@ steps: username: from_secret: SECRET_REGISTRY_USERNAME password: - from_secret: SECRET_REGISTRY_PASSWORD \ No newline at end of file + from_secret: SECRET_REGISTRY_PASSWORD + +# docker test + - name: tests + image: mcr.microsoft.com/dotnet/sdk:6.0 + commands: + - cd Sources/ + - dotnet restore LeagueOfLegends.sln + - dotnet test LeagueOfLegends.sln --no-restore + depends_on: [build] + +