Skip to content

Commit

Permalink
Merge pull request #58 from grosser/grosser/bang
Browse files Browse the repository at this point in the history
update rake to be able to run tests
  • Loading branch information
Fryguy authored May 16, 2024
2 parents 17f1b9d + 05e1c24 commit 8084400
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
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 <fryguy9@gmail.com>
* 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

0 comments on commit 8084400

Please sign in to comment.