Skip to content

Commit

Permalink
Add Ruby 3.4 to CI (#56)
Browse files Browse the repository at this point in the history
Add Ruby 3.4 to CI
Also use --enable-frozen-string-literal in CI to ensure compatibility
  • Loading branch information
westonganger authored Dec 30, 2024
1 parent 6456765 commit 6269b3e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
matrix:
include:
### TEST RUBY VERSIONS
- ruby: "2.5"
- ruby: "2.6"
- ruby: "2.7"
- ruby: "3.0"
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
- ruby: "3.1"
- ruby: "3.2"
- ruby: "3.3"
- ruby: "3.4"
### TEST RAILS VERSIONS
- ruby: "2.6"
rails_version: "~> 5.2.0"
Expand All @@ -34,11 +34,11 @@ jobs:
- ruby: "3.3"
rails_version: "~> 7.0.0"
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
- ruby: "3.3"
- ruby: "3.4"
rails_version: "~> 7.1.0"
- ruby: "3.3"
- ruby: "3.4"
rails_version: "~> 7.2.0"
- ruby: "3.3"
- ruby: "3.4"
rails_version: "~> 8.0.0"

steps:
Expand All @@ -59,4 +59,4 @@ jobs:
- name: Run test
run: |
bundle install
bundle exec rake test
RUBYOPT='--enable-frozen-string-literal' bundle exec rake test

0 comments on commit 6269b3e

Please sign in to comment.