Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Feb 10, 2025
1 parent cf6d1bf commit fa78c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sentry_ruby_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: ${{ ! contains(matrix.ruby_version, "jruby") }}
bundler-cache: ${{ ! contains(matrix.ruby_version, 'jruby' }}

- name: Start Redis
uses: supercharge/redis-github-action@c169aa53af4cd5d9321e9114669dbd11be08d307
Expand All @@ -76,7 +76,7 @@ jobs:

# https://github.com/jruby/jruby/issues/8606#issuecomment-2641501008
- name: Bundle Jruby
if: ${{ contains(matrix.ruby_version, "jruby") }}
if: ${{ contains(matrix.ruby_version, 'jruby') }}
run: gem install jar-dependencies
run: bundle

Expand Down

0 comments on commit fa78c0c

Please sign in to comment.