Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update rake to be able to run tests #58

Merged
merged 2 commits into from
May 16, 2024
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
19 changes: 8 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,18 @@ jobs:
strategy:
matrix:
ruby-version:
- '2.0'
- '2.1'
- '2.2'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
allow-failure: [false]
- '3.1'
- '3.2'
- '3.3'
continue-on-error: [false]
include:
- ruby-version: ruby-head
allow-failure: true
continue-on-error: true
- ruby-version: jruby-head
allow-failure: true
continue-on-error: true
name: ruby ${{ matrix.ruby-version }} rake
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand All @@ -32,4 +29,4 @@ jobs:
bundler-cache: true
- name: Run tests
run: bundle exec rake
continue-on-error: ${{ matrix.allow-failure }}
continue-on-error: ${{ matrix.continue-on-error }}
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* Dropped support for ruby versions before 2.7

2022-01-07 Jason Frey <[email protected]>
* Ship version 1.2.2

Expand Down
5 changes: 2 additions & 3 deletions deep_merge.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ Gem::Specification.new do |s|
s.test_files = [
"test/test_deep_merge.rb"
]
s.required_ruby_version = '>= 2.7'

s.add_development_dependency "rake", "~> 10.1"
s.add_development_dependency "rake"
s.add_development_dependency "test-unit-minitest"

end

Loading