diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..d00cae9 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,18 @@ +pool: + vmImage: 'windows-2019' + +steps: + + - script: | + pip install conan + conan install . + displayName: 'Fetch Dependencies' + + - script: | + cmake . && cmake --build . + displayName: 'Build' + + - script: | + ctest -VV . + displayName: 'Test' +