File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,10 @@ jobs:
13
13
- name : Set up Ruby
14
14
uses : ruby/setup-ruby@v1
15
15
with :
16
- ruby-version : ' 3.2' # Set to your Ruby version
17
-
18
- - name : Install dependencies
19
- run : bundle install --jobs 4 --retry 3
16
+ ruby-version : ' 2.7'
20
17
21
18
- name : Build gem
22
- run : bundle exec rake build
19
+ run : gem build merge_ruby_client.gemspec
23
20
24
21
test :
25
22
runs-on : ubuntu-latest
@@ -31,13 +28,10 @@ jobs:
31
28
- name : Set up Ruby
32
29
uses : ruby/setup-ruby@v1
33
30
with :
34
- ruby-version : ' 3.2' # Set to your Ruby version
35
-
36
- - name : Install dependencies
37
- run : bundle install --jobs 4 --retry 3
31
+ ruby-version : ' 2.7'
38
32
39
33
- name : Run tests
40
- run : bundle exec rake test # or ' bundle exec rspec' if using RSpec
34
+ run : bundle install && bundle exec rake test
41
35
42
36
publish :
43
37
needs : [ compile, test ]
You can’t perform that action at this time.
0 commit comments