Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.3
ruby-version: 3.3.6

- name: Build Gem
run: gem build -o patch_ruby.gem patch_ruby.gemspec
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:

strategy:
matrix:
ruby-version: [3.1.2, 3.0.2, 2.7.4]
max-parallel: 1
ruby-version: [3.4.2, 3.3.6, 3.1.2, 2.7.4]
max-parallel: 4

steps:
- name: Check out code
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ GEM
method_source (1.0.0)
minitest (5.18.0)
mutex_m (0.3.0)
observer (0.1.2)
parallel (1.27.0)
parser (3.3.10.0)
ast (~> 2.4.1)
Expand Down Expand Up @@ -86,6 +87,7 @@ PLATFORMS
DEPENDENCIES
factory_bot (~> 6.2)
mutex_m
observer
patch_ruby!
pry
pry-byebug
Expand Down
1 change: 1 addition & 0 deletions patch_ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'factory_bot', '~> 6.2'
s.add_development_dependency 'pry'
s.add_development_dependency 'mutex_m' # Required for Ruby 3.4+
s.add_development_dependency 'observer' # Required for Ruby 3.4+
# End custom

end
Loading