Skip to content

Commit

Permalink
Merge branch 'main' into redirect-back-or-to
Browse files Browse the repository at this point in the history
  • Loading branch information
Burgestrand authored Jun 16, 2024
2 parents 46cbe74 + e888328 commit 20e0fe5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
with:
rubygems: latest
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
bundler-cache: ${{ !startsWith(matrix.ruby-version, 'jruby') }}
- name: Bundler install (JRuby workaround)
if: ${{ startsWith(matrix.ruby-version, 'jruby') }}
run: |
gem install psych
bundle install
- name: Run tests
run: bundle exec rspec

Expand Down

0 comments on commit 20e0fe5

Please sign in to comment.