Skip to content

Commit 2b3947e

Browse files
committed
fix workflow
1 parent 33fdad9 commit 2b3947e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/samples-ruby.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
with:
3333
ruby-version: '3.2' # Not needed with a .ruby-version, .tool-versions or mise.toml
3434
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
35-
- name: Run test
35+
- name: Install bundle
3636
working-directory: ${{ matrix.sample }}
37-
run: bundle exec rake
38-
39-
37+
run: bundle install
38+
- name: Run rspec
39+
working-directory: ${{ matrix.sample }}
40+
run: rspec

0 commit comments

Comments
 (0)