Skip to content

Commit 8da8dc5

Browse files
authored
Merge pull request #809 from amatsuda/ci
CI against Ruby 3.2 (and 2.0)
2 parents e4907fd + 12f635d commit 8da8dc5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
9-
ruby: [2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, head]
9+
ruby: ['2.0', 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, head]
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ group :test do
1515
gem "simplecov", ">= 0.13"
1616
gem "webmock", '~> 3.14.0' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.4.0")
1717
gem "webmock", '>= 3.14' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.4.0")
18+
gem "rexml", '3.2.4' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.1.0")
1819
end
1920

2021
gemspec

0 commit comments

Comments
 (0)