Skip to content

Commit 44c4cac

Browse files
authored
Merge pull request #899 from yahonda/add_ruby34
Add Ruby 3.4 to CI matrix
2 parents 3178667 + 82c63a7 commit 44c4cac

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ jobs:
55
strategy:
66
fail-fast: false
77
matrix:
8-
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'head']
8+
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4','head']
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
1212
- uses: ruby/setup-ruby@v1
1313
with:
1414
ruby-version: ${{ matrix.ruby }}
15-
bundler: ${{ (matrix.ruby_version < '3' && '2.4.21') || 'latest' }}
15+
bundler: ${{ (matrix.ruby < '3' && '2.4.21') || 'latest' }}
1616
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1717
- run: bundle exec thor spec

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ group :test do
1515
gem "rspec-mocks", ">= 3"
1616
gem "simplecov", ">= 0.13"
1717
gem "webmock", ">= 3.14"
18+
gem "rdoc"
19+
gem "readline"
1820
end
1921

2022
gemspec

0 commit comments

Comments
 (0)