diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bc83a58..29a64e0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,3 +12,8 @@ variables: steps: - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration)' +- task: DotNetCoreCLI@2 + inputs: + command: test + projects: '**/*Tests/*.csproj' + arguments: '--configuration $(buildConfiguration)'