File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
lib/concurrent-ruby/concurrent/atomic Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,17 @@ jobs:
33
33
isolated :
34
34
name : " Test isolated"
35
35
runs-on : ubuntu-latest
36
+ strategy :
37
+ fail-fast : false
38
+ matrix :
39
+ ruby : [ 2.3, 3.2 ] # oldest and latest CRuby
36
40
env :
37
41
RUBYOPT : ' -w'
38
42
steps :
39
43
- uses : actions/checkout@v3
40
44
- uses : ruby/setup-ruby@v1
41
45
with :
42
- ruby-version : 3.2
46
+ ruby-version : ${{ matrix.ruby }}
43
47
bundler-cache : true
44
48
- run : bundle exec rake compile
45
49
- run : bundle exec rake spec:isolated
Original file line number Diff line number Diff line change
1
+ require 'fiber'
1
2
require 'concurrent/utility/engine'
2
3
require 'concurrent/constants'
3
4
4
- require 'fiber'
5
-
6
5
module Concurrent
7
6
# @!visibility private
8
7
# @!macro internal_implementation_note
You can’t perform that action at this time.
0 commit comments