File tree Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : ubuntu
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ name : build (${{ matrix.ruby }} / ${{ matrix.os }})
8
+ strategy :
9
+ matrix :
10
+ ruby : [ 2.7, 2.6, head ]
11
+ os : [ ubuntu-latest, macos-latest ]
12
+ runs-on : ${{ matrix.os }}
13
+ steps :
14
+ - uses : actions/checkout@master
15
+ - name : Set up Ruby
16
+ uses : ruby/setup-ruby@v1
17
+ with :
18
+ ruby-version : ${{ matrix.ruby }}
19
+ - name : Install dependencies
20
+ run : |
21
+ gem install bundler --no-document
22
+ bundle install
23
+ - name : Run test
24
+ run : rake test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
spec . summary = %q{HTTP client api for Ruby.}
14
14
spec . description = %q{HTTP client api for Ruby.}
15
15
spec . homepage = "https://github.com/ruby/net-http"
16
- spec . required_ruby_version = Gem ::Requirement . new ( ">= 2.3 .0" )
16
+ spec . required_ruby_version = Gem ::Requirement . new ( ">= 2.6 .0" )
17
17
18
18
spec . metadata [ "homepage_uri" ] = spec . homepage
19
19
spec . metadata [ "source_code_uri" ] = spec . homepage
You can’t perform that action at this time.
0 commit comments