Skip to content

Commit 309d969

Browse files
authored
Merge pull request #15 from code0-tech/extend-test-matrix
Extend test matrix to cover all supported ruby versions
2 parents 4fe67cc + 9b7f7a1 commit 309d969

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby:
17+
- '3.1.2' # using 3.1.2 instead of latest patch as 3.1.2 is the minimum specified in the gemspec
1718
- '3.2.2'
19+
- '3.3.6'
1820

1921
steps:
2022
- uses: actions/checkout@v4

.rubocop.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require:
33
- rubocop-rspec
44

55
AllCops:
6-
TargetRubyVersion: 3.0.0
6+
TargetRubyVersion: 3.1.2
77
NewCops: enable
88

99
Gemspec/DevelopmentDependencies:
@@ -38,6 +38,9 @@ RSpec/ExampleLength:
3838
Style/Documentation:
3939
Enabled: false
4040

41+
Style/HashSyntax:
42+
EnforcedShorthandSyntax: never
43+
4144
RSpec/MultipleMemoizedHelpers:
4245
Enabled: false
4346
RSpec/MultipleExpectations:

code0-identities.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
1111
spec.summary = "Library to manage external identities"
1212
spec.homepage = "https://github.com/code0-tech/code0-identities"
1313
spec.license = "MIT"
14-
spec.required_ruby_version = ">= 3.0.0"
14+
spec.required_ruby_version = ">= 3.1.2"
1515

1616
spec.metadata["homepage_uri"] = spec.homepage
1717
spec.metadata["source_code_uri"] = spec.homepage

0 commit comments

Comments
 (0)