Skip to content

Commit

Permalink
Merge pull request #1723 from ThisIsMissEm/feat/add-ruby-3.3-to-testi…
Browse files Browse the repository at this point in the history
…ng-matrix

Add Ruby 3.3 to GitHub Actions testing matrix
  • Loading branch information
nbulaj authored Jul 30, 2024
2 parents e10ce5d + c033bfd commit ef629da
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
os: [ubuntu-latest]
ruby:
- '3.0'
- '3.1'
- '3.2'
- "3.0"
- "3.1"
- "3.2"
- "3.3"
gemfile:
- gemfiles/rails_6_0.gemfile
- gemfiles/rails_6_1.gemfile
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: "3.3"
bundler-cache: true
- run: bundle exec rake spec || echo "Rails edge test is done."

Expand All @@ -73,6 +74,6 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 'ruby-head'
ruby-version: "ruby-head"
bundler-cache: true
- run: bundle exec rake spec || echo "Ruby edge test is done."

0 comments on commit ef629da

Please sign in to comment.