Skip to content

Commit

Permalink
Update azure-pipelines.yml for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
jnosek committed Jul 6, 2020
1 parent 8fbef11 commit c0a6fb3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 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
Expand All @@ -14,8 +15,13 @@ pool:
vmImage: 'windows-latest'

steps:
- script: dotnet build -c {{ variables.configuration }}
- task: DotNetCoreCLI@2
displayName: 'Build'

- script: dotnet test -c {{ variables.configuration }}
inputs:
command: 'build'
arguments: '-C {{ variables.configuration }}'
- task: DotNetCoreCLI@2
displayName: 'Test'
inputs:
command: 'build'
arguments: '-C {{ variables.configuration }}'

0 comments on commit c0a6fb3

Please sign in to comment.