Skip to content

Commit d16b531

Browse files
committed
Trying GitHub Actions for testing
Attempting to figure out why rspec passes but the action still fails.
1 parent 6c87589 commit d16b531

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ruby.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,10 @@ jobs:
3636
ruby-version: ${{ matrix.ruby-version }}
3737
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
3838
- name: Run tests
39-
run: bundle exec rspec
39+
run: |
40+
set +e
41+
set -x
42+
bundle exec rspec
43+
code=$?
44+
echo "RSpec exited: $code"
45+
exit $code

0 commit comments

Comments
 (0)