calibre/azure-pipelines.yml
2019-09-08 13:46:50 +05:30

21 lines
364 B
YAML

# https://aka.ms/yaml
trigger:
branches:
include:
- '*'
exclude:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'