Skip to content

Commit

Permalink
Stop running tests on EOL rubies
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinj committed Dec 12, 2021
1 parent 6daccc2 commit aa6a46c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- "3.0"
Expand All @@ -38,12 +35,6 @@ jobs:
- gemfiles/rbnacl.gemfile
experimental: [false]
include:
- ruby: 2.1
gemfile: 'gemfiles/rbnacl.gemfile'
experimental: false
- ruby: 2.2
gemfile: 'gemfiles/rbnacl.gemfile'
experimental: false
- ruby: 2.7
coverage: "true"
gemfile: 'gemfiles/rbnacl.gemfile'
Expand Down
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.1

Gemspec/RequiredRubyVersion:
Enabled: false

Layout/AlignParameters:
EnforcedStyle: with_fixed_indentation

Expand Down
2 changes: 1 addition & 1 deletion ruby-jwt.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.description = 'A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.'
spec.homepage = 'https://github.com/jwt/ruby-jwt'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.1'
spec.required_ruby_version = '>= 2.6'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/jwt/ruby-jwt/issues',
'changelog_uri' => "https://github.com/jwt/ruby-jwt/blob/v#{JWT.gem_version}/CHANGELOG.md"
Expand Down

0 comments on commit aa6a46c

Please sign in to comment.