Skip to content

Commit 3c33cd6

Browse files
authored
ci: Set up CI with Azure Pipelines (#895)
[skip ci]
1 parent ecee089 commit 3c33cd6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.azure-pipelines.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
- main
8+
9+
pool:
10+
vmImage: 'macOS-10.15'
11+
12+
steps:
13+
- task: UseRubyVersion@0
14+
inputs:
15+
versionSpec: '>= 2.6'
16+
17+
- script: bundle install --retry=3 --jobs=4
18+
displayName: 'bundle install'

0 commit comments

Comments
 (0)