Skip to content

Commit aec6e97

Browse files
committed
Set up CI with Azure Pipelines
1 parent 91e4b80 commit aec6e97

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

azure-pipelines.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Ruby
2+
# Package your Ruby project.
3+
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'Ubuntu-16.04'
11+
12+
steps:
13+
- task: UseRubyVersion@0
14+
inputs:
15+
versionSpec: '>= 2.5'
16+
17+
- script: |
18+
gem install bundler
19+
bundle install --retry=3 --jobs=4
20+
displayName: 'bundle install'
21+
22+
- script: bundle exec rake
23+
displayName: 'bundle exec rake'

0 commit comments

Comments
 (0)