Skip to content

Commit

Permalink
Merge pull request #102 from flavorjones/101-add-ruby-head-to-ci
Browse files Browse the repository at this point in the history
ci: add ruby-head to the test matrix
  • Loading branch information
flavorjones committed May 28, 2021
2 parents 918517d + ecc80ed commit 091c980
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
ruby: ["2.5", "2.6", "2.7", "3.0"]
ruby: ["2.5", "2.6", "2.7", "3.0", "head"]
runs-on: ${{ matrix.platform }}
steps:
- name: configure git crlf on windows
Expand Down
6 changes: 4 additions & 2 deletions mini_portile2.gemspec
Expand Up @@ -31,12 +31,14 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features|examples)/})
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.3.0"

spec.add_dependency "net-ftp", "~> 0.1"

spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "minitar", "~> 0.7"
spec.add_development_dependency "minitest", "~> 5.11"
spec.add_development_dependency "minitest-hooks", "~> 1.5.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "webrick", "~> 1.0"

spec.required_ruby_version = ">= 2.3.0"
end

0 comments on commit 091c980

Please sign in to comment.