Skip to content

Commit 2a3010e

Browse files
authored
Remove EOL rubies from test matrix, add csv dev dep (#43)
1 parent fdad3b3 commit 2a3010e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ jobs:
77
matrix:
88
os: [ubuntu-latest]
99
ruby:
10-
- '2.5'
11-
- '2.6'
12-
- '2.7'
13-
- '3.0'
1410
- '3.1'
1511
- '3.2'
12+
- '3.3'
1613
- head
1714
- jruby
1815
- jruby-head
@@ -28,7 +25,7 @@ jobs:
2825
- run: bundle exec rake
2926
# NOTE: calling "bundle install" because the cache apparently did not update due to the gemspec injection
3027
- run: bundle install && bundle exec standardrb
31-
if: matrix.ruby == '3.1' # not using "head" because rubocop won't work there yet
28+
if: matrix.ruby == '3.3' # not using "head" because rubocop won't work there yet
3229
# What's below helps having a single "status check" for mergeability, without
3330
# having to add each new version to the list of expected status checks in GitHub.
3431
# See https://github.community/t/status-check-for-a-matrix-jobs/127354/7

kiba-common.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ Gem::Specification.new do |gem|
2424
gem.add_development_dependency "amazing_print"
2525
gem.add_development_dependency "minitest-focus"
2626
gem.add_development_dependency "standard"
27+
gem.add_development_dependency "csv"
2728
end

0 commit comments

Comments
 (0)