summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: bfbb61c81506a7bd4170025b70a82e71d3e74692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pool:
  vmImage: 'Ubuntu 16.04'

steps:
- task: UseRubyVersion@0
  inputs:
    versionSpec: '>= 2.5'

- script: |
    gem install bundler
    bundle install --retry=3 --jobs=4
  displayName: 'bundle install'

- script: bundle exec rake
  displayName: 'bundle exec rake'