Skip to content

Commit

Permalink
Pin bundler on 2.7 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan authored May 21, 2024
1 parent ff955c6 commit e639beb
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- run: |
gem install bundler
bundle install
# The last version of bundler (>= 0) to support your Ruby & RubyGems was 2.4.22.
- run: gem install bundler
if: ${{ matrix.ruby-version != '2.7' }}
- run: gem install bundler -v 2.4.22
if: ${{ matrix.ruby-version == '2.7' }}
- run: bundle install
- run: rake test
lint:
runs-on: ubuntu-latest
Expand All @@ -62,9 +65,12 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- run: |
gem install bundler
bundle install
# The last version of bundler (>= 0) to support your Ruby & RubyGems was 2.4.22.
- run: gem install bundler
if: ${{ matrix.ruby-version != '2.7' }}
- run: gem install bundler -v 2.4.22
if: ${{ matrix.ruby-version == '2.7' }}
- run: bundle install
- run: rake test:integration:fluent
all-passed:
needs: [unit-test,lint,integration-test]
Expand Down

0 comments on commit e639beb

Please sign in to comment.