diff options
author | Arisotura <thetotalworm@gmail.com> | 2021-03-15 19:28:56 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2021-03-15 19:28:56 +0100 |
commit | 7f8a58b8feefa41ad61931971edb5151b185f34d (patch) | |
tree | 8f4dd72fe31487069c0a3980e950cbb2542fec62 | |
parent | 436b3c4c1d6aa986f181dcb9074bbebd553d889c (diff) |
Set up CI with Azure Pipelines
blarg [skip ci]
-rw-r--r-- | azure-pipelines.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..27a798a --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# 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' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' |