Skip to content

Commit b4fda02

Browse files
authored
Add Ruby 3.4 to CI (#69)
Add Ruby 3.4 to CI Also use --enable-frozen-string-literal in CI to ensure compatibility
1 parent ab1e8e7 commit b4fda02

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ jobs:
1616
matrix:
1717
include:
1818
### TEST RUBY VERSIONS
19-
- ruby: "2.5"
2019
- ruby: "2.6"
2120
- ruby: "2.7"
2221
- ruby: "3.0"
2322
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
2423
- ruby: "3.1"
2524
- ruby: "3.2"
2625
- ruby: "3.3"
26+
- ruby: "3.4"
2727
### TEST RAILS VERSIONS
2828
- ruby: "2.6"
2929
rails_version: "~> 6.1.0"
3030
- ruby: "3.3"
3131
rails_version: "~> 7.0.0"
3232
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
33-
- ruby: "3.3"
33+
- ruby: "3.4"
3434
rails_version: "~> 7.1.0"
35-
- ruby: "3.3"
35+
- ruby: "3.4"
3636
rails_version: "~> 7.2.0"
37-
- ruby: "3.3"
37+
- ruby: "3.4"
3838
rails_version: "~> 8.0.0"
3939
### DB TESTING TESTING
4040
- ruby: 3.3
@@ -104,4 +104,4 @@ jobs:
104104
- name: Run test
105105
run: |
106106
bundle install
107-
bundle exec rake test
107+
RUBYOPT='--enable-frozen-string-literal' bundle exec rake test

0 commit comments

Comments
 (0)