Skip to content

Commit

Permalink
remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld committed Dec 29, 2023
1 parent a55d926 commit 6c116bc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ jobs:
- name: Bundle install
run: |
bundle config set without development
bundle install --jobs 4 --retry 3
if [[ "$(ruby -v | awk '{print $2}')" == 2.7.8* ]]; then
BUNDLER_VERSION=2.4.22 bundle install --jobs 4 --retry 3
else
bundle install --jobs 4 --retry 3
fi
- name: Run all tests
env:
Expand Down
5 changes: 3 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ GEM
karafka-core (2.2.7)
concurrent-ruby (>= 1.1)
karafka-rdkafka (>= 0.13.9, < 0.15.0)
karafka-rdkafka (0.14.5)
karafka-rdkafka (0.14.6)
ffi (~> 1.15)
mini_portile2 (~> 2.6)
rake (> 12)
Expand Down Expand Up @@ -68,6 +68,7 @@ GEM
zeitwerk (2.6.12)

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
Expand All @@ -78,4 +79,4 @@ DEPENDENCIES
waterdrop!

BUNDLED WITH
2.4.22
2.5.3

0 comments on commit 6c116bc

Please sign in to comment.