Skip to content

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
nopara73 committed Dec 9, 2018
1 parent 8f7ec41 commit 57c50a1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,19 @@
# ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core

pool:
vmImage: 'ubuntu-16.04', 'macOS-10.13', 'vs2017-win2016'

variables:
buildConfiguration: 'Debug'

steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: test
projects: '**/*WalletWasabi.Tests/*.csproj'
arguments: '--configuration $(buildConfiguration)'

0 comments on commit 57c50a1

Please sign in to comment.