Skip to content

Commit

Permalink
Run isolated specs on the oldest CRuby too
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Feb 24, 2023
1 parent 9b15038 commit fa452a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,17 @@ jobs:
isolated:
name: "Test isolated"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ 2.3, 3.2 ] # oldest and latest CRuby
env:
RUBYOPT: '-w'
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake compile
- run: bundle exec rake spec:isolated
3 changes: 1 addition & 2 deletions lib/concurrent-ruby/concurrent/atomic/locals.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
require 'fiber'
require 'concurrent/utility/engine'
require 'concurrent/constants'

require 'fiber'

module Concurrent
# @!visibility private
# @!macro internal_implementation_note
Expand Down

0 comments on commit fa452a4

Please sign in to comment.