Skip to content

Commit

Permalink
Drop Ruby 3.0 support, add 3.4 for CI (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
pokonski authored Jan 8, 2025
1 parent 702c26c commit 01dadb7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rails_version: ['6.1.0', '7.0', '7.1.0', 7.2.2]
ruby-version: ['3.0', '3.1', '3.2', '3.3']
rails_version: ['6.1.0', '7.0', '7.1.0', '7.2.2']
ruby_version: ['3.1', '3.2', '3.3', '3.4']
exclude:
- ruby_version: '3.4'
rails_version: '6.1.0'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
env:
RAILS_VERSION: "${{ matrix.rails_version }}"
Expand Down

0 comments on commit 01dadb7

Please sign in to comment.