diff options
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..0fb3a6f --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +# 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 + +trigger: + branches: + include: + - '*' + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: echo Placeholder CI + displayName: 'Placeholder' |