Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['3.1', '3.2', '3.3']
ruby-version: ['3.3', '3.4', '4.0']
name: integration-tests (ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
steps:
Expand All @@ -25,7 +25,12 @@ jobs:
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install ruby dependencies
run: bundle install --with test
run: |
if [ "${{ matrix.ruby-version }}" == "4.0" ]; then
bundle install
else
bundle install --with test
fi
- name: Meilisearch (latest) setup with Docker
run: docker run -d -p 7700:7700 getmeili/meilisearch-enterprise:latest meilisearch --master-key=masterKey --no-analytics
- name: Run test suite
Expand All @@ -44,7 +49,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
ruby-version: 3.3
- name: Install ruby dependencies
run: bundle install --with test
- name: Run linter
Expand Down
1 change: 1 addition & 0 deletions meilisearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 3.0.0'
s.add_dependency 'httparty', '~> 0.24'
s.add_dependency 'logger'

s.metadata['rubygems_mfa_required'] = 'true'
s.metadata['source_code_uri'] = 'https://github.com/meilisearch/meilisearch-ruby'
Expand Down