We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33fdad9 commit 2b3947eCopy full SHA for 2b3947e
.github/workflows/samples-ruby.yaml
@@ -32,8 +32,9 @@ jobs:
32
with:
33
ruby-version: '3.2' # Not needed with a .ruby-version, .tool-versions or mise.toml
34
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
35
- - name: Run test
+ - name: Install bundle
36
working-directory: ${{ matrix.sample }}
37
- run: bundle exec rake
38
-
39
+ run: bundle install
+ - name: Run rspec
+ working-directory: ${{ matrix.sample }}
40
+ run: rspec
0 commit comments