diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-09-11 18:34:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-11 18:34:34 -0400 |
| commit | a80d7a75702b0b63d2f64bc8616a51ec49422865 (patch) | |
| tree | b709b19eca6da02dad41c9bbde8cbaaae68953fd | |
| parent | c6ac14d6d904a6e7cfd14c8d1daf34f9604193bc (diff) | |
| parent | 6daf59d3b6377e0717ce7bc3643498f03e5937bd (diff) | |
Merge pull request #311 from inkstitch/azure-pipelines
Set up CI with Azure Pipelines
| -rw-r--r-- | azure-pipelines.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..8ae24f01 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +# 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 + +pool: + vmImage: 'Ubuntu 16.04' + +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' |
