We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f13c62 commit 455efbcCopy full SHA for 455efbc
.github/workflows/ruby.yml
@@ -47,14 +47,17 @@ jobs:
47
- truffleruby-head
48
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
49
steps:
50
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v3
51
- uses: ruby/setup-ruby@v1
52
with:
53
ruby-version: ${{ matrix.ruby }}
54
- bundler: ${{ (matrix.ruby < '3' && '2.5.23') || 'latest' }}
55
56
- name: Install dependencies
57
- run: bundle install
+ run: |
+ if [[ "${{ matrix.ruby }}" < "3.1" ]]; then
58
+ gem update --system 2.4.22 --no-document
59
+ fi
60
+ bundle install
61
62
- name: Run tests
63
run: bundle exec rake test
0 commit comments