pairing_heap 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06be98427116306a2d0968edb9757188dde8d9ee97226ab03edf7fe4aba8d9d6
4
- data.tar.gz: f91175ec148649d8a1987e8af3935b6f96740c0b21b6bf2e34dc154b355c35a8
3
+ metadata.gz: 90dd09750c4fddd39d50f8cc84425b7c88faa7a31912a23e828525dfe1987f1f
4
+ data.tar.gz: 4710ff54026a0f62b6f8f535a48b3683277534c319832ea4e08de8e122467fd2
5
5
  SHA512:
6
- metadata.gz: 5441d35660f0fec2c66f4e1ea5c4b89499d9e4d97f96e01b39f5fada5c462fafe75196562a611a2ae85e95bceb006a4b9fbd1252d9135a5859e4cb165b57ab74
7
- data.tar.gz: 01b5f44ca3f608ca26091c5fd983965e95591fd097f9a82f87ef87e28bb01c8f66f0f6bf21bdbad2f9dcfc1f0b70fe34243a277d6a743b24c4d03f6377b419af
6
+ metadata.gz: 9aaf8a8b4a665fa53cc6a1f725e8a743a2bd7a9752ad0e0b0d0f8f7a6efb970693276b7731c778ef3785653595d3cfdd22afbad43511aa3f3dd093739ea74f67
7
+ data.tar.gz: 495d1219cd93cabefaba75956729f18dbb0a69eb4af9cee4122920e9b260fb0fa3b6d66170c86eb1f398c71049f34f622f75346ade10a0f9ef7093c5ddffeefd
@@ -1,18 +1,21 @@
1
1
  name: Ruby
2
2
 
3
3
  on: [push,pull_request]
4
-
5
4
  jobs:
6
5
  build:
7
- runs-on: ubuntu-latest
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ os: [ubuntu-latest, macos-latest]
10
+ # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
11
+ ruby: ['2.3', '2.7', '3.0', '3.1', head, jruby, jruby-head, truffleruby, truffleruby-head]
12
+ runs-on: ${{ matrix.os }}
8
13
  steps:
9
- - uses: actions/checkout@v2
10
- - name: Set up Ruby
11
- uses: ruby/setup-ruby@v1
14
+ - uses: actions/checkout@v3
15
+ - uses: ruby/setup-ruby@v1
12
16
  with:
13
- ruby-version: 3.0.0
14
- - name: Run the default task
15
- run: |
17
+ ruby-version: ${{ matrix.ruby }}
18
+ - run: |
16
19
  gem install bundler -v 2.2.3
17
20
  bundle install
18
21
  bundle exec rake
data/Gemfile.lock CHANGED
@@ -1,16 +1,16 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pairing_heap (0.1.0)
4
+ pairing_heap (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- minitest (5.14.3)
10
- rake (13.0.3)
9
+ minitest (5.15.0)
10
+ rake (13.0.6)
11
11
 
12
12
  PLATFORMS
13
- x86_64-darwin-20
13
+ x86_64-darwin-21
14
14
 
15
15
  DEPENDENCIES
16
16
  minitest (~> 5.0)
@@ -18,4 +18,4 @@ DEPENDENCIES
18
18
  rake (~> 13.0)
19
19
 
20
20
  BUNDLED WITH
21
- 2.2.3
21
+ 2.3.6