diff --git a/azure.yml b/azure.yml new file mode 100644 index 00000000..b788c930 --- /dev/null +++ b/azure.yml @@ -0,0 +1,24 @@ +trigger: + batch: true + branches: + include: + - '*' + tags: + include: + - '*' + +pr: + branches: + include: + - '*' + +jobs: +- job: Build + displayName: 'Build' + + pool: + vmImage: 'ubuntu-latest' + + steps: + - script: 'echo hello world' + displayName: 'Initial Commit'