mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-07 12:40:20 -05:00
21 lines
364 B
YAML
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'
|