MIMDSC/azure-pipelines.yml

22 строки
504 B
YAML

# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'vs2017-win2016'
steps:
- powershell: |
.\build.ps1
displayName: 'Build and Test'
failOnStderr: true
ignoreLASTEXITCODE: true
- task: PublishTestResults@2
inputs:
testResultsFormat: 'NUnit' # Options: JUnit, NUnit, VSTest, xUnit
testResultsFiles: '*testresults.xml'