File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 4444 bundler : none
4545 - name : Set working directory as safe
4646 run : git config --global --add safe.directory $(pwd)
47- - name : Set up permission
48- run : chmod -R o-w /opt/hostedtoolcache/Ruby
4947 - name : Install dependencies
5048 run : |
5149 sudo apt-get update
9088 bundler-cache : none
9189 - name : Set working directory as safe
9290 run : git config --global --add safe.directory $(pwd)
93- - name : Set up permission
94- run : chmod -R o-w /opt/hostedtoolcache/Ruby
9591 - name : Install dependencies
9692 run : |
9793 sudo apt-get update
Original file line number Diff line number Diff line change 2020 bundler : none
2121 - name : Set working directory as safe
2222 run : git config --global --add safe.directory $(pwd)
23- - name : Set up permission
24- run : chmod -R o-w /opt/hostedtoolcache/Ruby
2523 - name : Install dependencies
2624 run : |
2725 sudo apt-get update
Original file line number Diff line number Diff line change @@ -132,6 +132,8 @@ class RactorInstanceTest < Test::Unit::TestCase
132132 testing "::Ractor"
133133
134134 def test_aref
135+ omit "Accessing ractor local storage" if RUBY_VERSION >= "3.5"
136+
135137 r = Ractor . new { }
136138 r [ 'foo' ] = 'bar'
137139 assert_send_type "(String) -> untyped" ,
@@ -141,6 +143,8 @@ def test_aref
141143 end
142144
143145 def test_aset
146+ omit "Accessing ractor local storage" if RUBY_VERSION >= "3.5"
147+
144148 r = Ractor . new { }
145149 assert_send_type "(String, String) -> String" ,
146150 r , :[]= , 'foo' , 'bar'
You can’t perform that action at this time.
0 commit comments