We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f87ed8 commit ffa8b5cCopy full SHA for ffa8b5c
2 files changed
.github/workflows/test.yml
@@ -2,11 +2,14 @@ name: Test
2
on: [ push ]
3
jobs:
4
test:
5
+ strategy:
6
+ matrix:
7
+ ruby: [ 3.1, 3.2 ]
8
runs-on: ubuntu-latest
9
steps:
- - uses: actions/checkout@v2
10
+ - uses: actions/checkout@v4
11
- uses: ruby/setup-ruby@319066216501fbd5e2d568f14b7d68c19fb67a5d
12
with:
- ruby-version: '3.2'
13
+ ruby-version: ${{ matrix.ruby }}
14
- run: bundle install
15
- run: bundle exec rspec spec
phraseapp-in-context-editor-ruby.gemspec
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
s.name = "phraseapp-in-context-editor-ruby"
s.version = "2.0.0"
s.platform = Gem::Platform::RUBY
- s.required_ruby_version = ">= 3.2.0"
+ s.required_ruby_version = ">= 3.1.0"
s.authors = ["Phrase"]
s.email = ["info@phrase.com"]
s.homepage = "https://phrase.com"
0 commit comments