Skip to content

Commit 2f1628e

Browse files
update yml
1 parent 50c398a commit 2f1628e

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@ jobs:
1313
- name: Set up Ruby
1414
uses: ruby/setup-ruby@v1
1515
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'
2017

2118
- name: Build gem
22-
run: bundle exec rake build
19+
run: gem build merge_ruby_client.gemspec
2320

2421
test:
2522
runs-on: ubuntu-latest
@@ -31,13 +28,10 @@ jobs:
3128
- name: Set up Ruby
3229
uses: ruby/setup-ruby@v1
3330
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'
3832

3933
- name: Run tests
40-
run: bundle exec rake test # or 'bundle exec rspec' if using RSpec
34+
run: bundle install && bundle exec rake test
4135

4236
publish:
4337
needs: [ compile, test ]

0 commit comments

Comments
 (0)