From 8e29b7b8af2da764c6ee1a19823dfc908836a13a Mon Sep 17 00:00:00 2001 From: suurez <116865278+suurez@users.noreply.github.com> Date: Mon, 26 Feb 2024 00:17:04 +0530 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..b7c97e3 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# 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: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- task: CmdLine@2 + inputs: + script: | + echo Write your commands here + + echo Hello world \ No newline at end of file