Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2020-01-11 19:55:54 +0300
committerAndrew Arnott <andrewarnott@gmail.com>2020-01-15 18:36:00 +0300
commit7340534c698bffe3347d16c238f9e75c7233a0dd (patch)
treec6ff0852762d2cce60843c4120a6ba575836d165 /azure-pipelines
parent163f2062ef6bab5b3bb748f8e9175da5b97a7f18 (diff)
Add MsgPack001 analyzer and first test
Diffstat (limited to 'azure-pipelines')
-rw-r--r--azure-pipelines/build_nonWindows.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/azure-pipelines/build_nonWindows.yml b/azure-pipelines/build_nonWindows.yml
index 1fb04004..fe665476 100644
--- a/azure-pipelines/build_nonWindows.yml
+++ b/azure-pipelines/build_nonWindows.yml
@@ -6,9 +6,17 @@ steps:
arguments: --no-restore /p:platform=NoVSIX -c $(BuildConfiguration)
- task: DotNetCoreCLI@2
- displayName: Run tests
+ displayName: Run MessagePack.Tests
inputs:
command: test
projects: tests/MessagePack.Tests/MessagePack.Tests.csproj
arguments: --no-build -c $(BuildConfiguration) -f netcoreapp2.1 -v n
testRunTitle: netcoreapp2.1-$(Agent.JobName)
+
+- task: DotNetCoreCLI@2
+ displayName: Run MessagePackAnalyzer.Tests
+ inputs:
+ command: test
+ projects: tests/MessagePackAnalyzer.Tests/MessagePackAnalyzer.Tests.csproj
+ arguments: --no-build -c $(BuildConfiguration) -f netcoreapp3.1 -v n
+ testRunTitle: netcoreapp3.1-$(Agent.JobName)-Analyzers