Skip to content

Commit

Permalink
Add Ruby 3.4 to CI (#69)
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 ab1e8e7 commit b4fda02
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,25 +16,25 @@ 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: "~> 6.1.0"
- 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"
### DB TESTING TESTING
- ruby: 3.3
Expand Down Expand Up @@ -104,4 +104,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 b4fda02

Please sign in to comment.