From ac81ccedb3ef2b7691258395726378900902c397 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Sep 2019 10:38:55 +0530 Subject: [PATCH] Set up CI with Azure Pipelines --- azure-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..007e8fb554 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,20 @@ +# 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'