From 1d2f01762a7ec3b4433667a62ade22ea738613c9 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Mon, 28 Dec 2020 18:27:18 -0800 Subject: [PATCH] ci: Set up CI with Azure Pipelines [skip ci] --- .azure-pipelines.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .azure-pipelines.yml diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml new file mode 100644 index 00000000..231af5ba --- /dev/null +++ b/.azure-pipelines.yml @@ -0,0 +1,18 @@ +# Ruby +# Package your Ruby project. +# Add steps that install rails, analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby + +trigger: +- main + +pool: + vmImage: 'macOS-10.15' + +steps: +- task: UseRubyVersion@0 + inputs: + versionSpec: '>= 2.6' + +- script: bundle install --retry=3 --jobs=4 + displayName: 'bundle install'