Skip to content

Commit 3612ce2

Browse files
committedJun 28, 2024·
chore: Install rspec gem for running tests in CI workflow
1 parent 6d6b61f commit 3612ce2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ jobs:
2424
with:
2525
ruby-version: ${{ matrix.ruby-version }}
2626
bundler-cache: false # runs 'bundle install' and caches installed gems automatically
27+
- name: Install dependencies
28+
run: gem install rspec
2729
- name: Run tests
28-
run: bundle exec rspec
30+
run: rspec

0 commit comments

Comments
 (0)
Please sign in to comment.