Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
minad committed Dec 28, 2024
1 parent cc14f8d commit c33b31d
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 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 @@ -92,15 +92,33 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
ruby-version: 3.4
- run: bundle update && bundle exec rake test:rails
name: "rake test:rails RAILS=7.0.8"
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.3
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: 8.0.1
- run: bundle update && bundle exec rake test:rails
name: "rake test:rails RAILS=main"
env:
Expand Down

0 comments on commit c33b31d

Please sign in to comment.