Skip to content

Commit a9b4679

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

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- ruby: "3.1"
2424
- ruby: "3.2"
2525
- ruby: "3.3"
26+
- ruby: "3.4"
2627
### TEST RAILS VERSIONS
2728
- ruby: "2.6"
2829
rails_version: "~> 6.0.0"
@@ -31,11 +32,11 @@ jobs:
3132
- ruby: "3.3"
3233
rails_version: "~> 7.0.0"
3334
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
34-
- ruby: "3.3"
35+
- ruby: "3.4"
3536
rails_version: "~> 7.1.0"
36-
- ruby: "3.3"
37+
- ruby: "3.4"
3738
rails_version: "~> 7.2.0"
38-
- ruby: "3.3"
39+
- ruby: "3.4"
3940
rails_version: "~> 8.0.0"
4041

4142
steps:
@@ -58,4 +59,4 @@ jobs:
5859
bundle install
5960
bundle exec rake db:create
6061
bundle exec rake db:migrate
61-
bundle exec rake test
62+
RUBYOPT='--enable-frozen-string-literal' bundle exec rake test

0 commit comments

Comments
 (0)