From a4f54895b138758363fe072aa6be3fedb238a543 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Sat, 23 Mar 2024 17:00:20 +0300 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..709a8d2 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,23 @@ +# 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: + - master +name: $(Date:yyyy).$(Date:MM).$(Date:dd).$(BuildID)-$(Build.SourceBranchName) +resources: + repositories: + - repository: self + type: git + ref: master +jobs: +- job: Job_1 + displayName: Agent job 1 + pool: + name: default + steps: + - script: echo Docs! + displayName: 'Docs'