diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..1d3ec008ec --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,11 @@ +jobs: +- job: macOS + pool: + vmImage: 'macos-10.13' + steps: + - script: | + gem install bundler + bundle install --retry=3 --jobs=4 + displayName: 'bundle install' + - script: rake + displayName: 'rake'