22 lines
593 B
YAML
22 lines
593 B
YAML
# This is a sample build configuration for all languages.
|
|
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
|
|
# Only use spaces to indent your .yml configuration.
|
|
# -----
|
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
|
# image: docker-image:tag
|
|
|
|
#image: microsoft/dotnet:1.0.1-sdk-projectjson
|
|
#image: microsoft/windowsservercore
|
|
|
|
image: microsoft/dotnet
|
|
|
|
pipelines:
|
|
default:
|
|
- step:
|
|
script:
|
|
- cd Lendoit.Test.Units
|
|
- pwd
|
|
- dotnet restore
|
|
- dotnet test
|
|
|
|
|