diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 91543aa8e9..5838af7102 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -36,4 +36,10 @@ jobs: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests - run: bundle exec rspec + run: | + set +e + set -x + bundle exec rspec + code=$? + echo "RSpec exited: $code" + exit $code