Skip to content

Commit

Permalink
Update CI; Test Ruby 3.4 and Rails 8
Browse files Browse the repository at this point in the history
  • Loading branch information
minad committed Dec 28, 2024
1 parent 2438c53 commit c4b9729
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
Expand Down Expand Up @@ -46,6 +46,11 @@ jobs:
if: ${{ matrix.ruby != '2.5' && matrix.ruby != '2.6' }}
env:
SINATRA: 4.0.0
- run: bundle update && bundle exec rake test:sinatra
name: "rake test:sinatra SINATRA=4.1.1"
if: ${{ matrix.ruby != '2.5' && matrix.ruby != '2.6' }}
env:
SINATRA: 4.1.1
- run: bundle update && bundle exec rake test:sinatra
name: "rake test:sinatra SINATRA=main"
if: ${{ matrix.ruby != '2.5' && matrix.ruby != '2.6' }}
Expand Down Expand Up @@ -98,9 +103,27 @@ jobs:
env:
RAILS: 7.0.8
- run: bundle update && bundle exec rake test:rails
name: "rake test:rails RAILS=7.1.3"
name: "rake test:rails RAILS=7.1.5"
env:
RAILS: 7.1.5
- run: bundle update && bundle exec rake test:rails
name: "rake test:rails RAILS=7.2.2"
env:
RAILS: 7.2.2
rails-8:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
- run: bundle update && bundle exec rake test:rails
name: "rake test:rails RAILS=8.0.1"
env:
RAILS: 7.1.3
RAILS: 8.0.1
- run: bundle update && bundle exec rake test:rails
name: "rake test:rails RAILS=main"
env:
Expand Down

0 comments on commit c4b9729

Please sign in to comment.