File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 8
8
matrix :
9
9
ruby : [ '3.1', '3.2', '3.3', 'head' ]
10
10
rails : [ '7.1', 'edge' ]
11
+ rubyopt : [""]
11
12
include :
12
13
- ruby : ' 2.7'
13
14
rails : ' 6.1'
14
15
- ruby : ' 3.0'
15
16
rails : ' 6.1'
16
17
- ruby : ' 3.1'
17
18
rails : ' 7.0'
19
+ - ruby : ' 3.3'
20
+ rails : ' edge'
21
+ rubyopt : " --enable-frozen-string-literal"
18
22
19
23
env :
20
24
RAILS_VERSION : ${{ matrix.rails }}
21
25
22
26
steps :
23
- - uses : actions/checkout@v2
27
+ - uses : actions/checkout@v4
24
28
25
29
- name : Set up Ruby
26
30
uses : ruby/setup-ruby@v1
@@ -29,10 +33,10 @@ jobs:
29
33
bundler-cache : true
30
34
31
35
- name : Run unit tests
32
- run : bundle exec rake test:unit
36
+ run : bundle exec rake test:unit RUBYOPT="${{ matrix.rubyopt }}"
33
37
timeout-minutes : 3
34
38
35
39
- name : Run acceptance tests
36
- run : bundle exec rake test:acceptance
40
+ run : bundle exec rake test:acceptance RUBYOPT="${{ matrix.rubyopt }}"
37
41
timeout-minutes : 10
38
42
if : ${{ matrix.rails != 'edge' && matrix.ruby != 'head' }} # Acceptance tests use `gem install rails && rails new`
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ def read_streams
168
168
end
169
169
170
170
def read_stream ( stream )
171
- output = ""
171
+ output = + ""
172
172
while IO . select ( [ stream ] , [ ] , [ ] , 0.5 ) && !stream . eof?
173
173
output << stream . readpartial ( 10240 )
174
174
end
You can’t perform that action at this time.
0 commit comments