Federated search added (#558) #1430
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
push: | |
# trying and staging branches are for BORS config | |
branches: | |
- trying | |
- staging | |
- main | |
jobs: | |
integration_tests: | |
# Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR) | |
# Will still run for each push to bump-meilisearch-v* | |
if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v') | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: ['3.1', '3.2', '3.3'] | |
name: integration-tests (ruby ${{ matrix.ruby-version }}) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install ruby dependencies | |
run: bundle install --with test | |
- name: Meilisearch (latest) setup with Docker | |
run: docker run -d -p 7700:7700 getmeili/meilisearch:latest meilisearch --master-key=masterKey --no-analytics | |
- name: Run test suite | |
run: bundle exec rspec | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
if: matrix.ruby-version == '3.3' | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
linter_check: | |
name: linter-check | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
- name: Install ruby dependencies | |
run: bundle install --with test | |
- name: Run linter | |
run: bundle exec rubocop lib/ spec/ | |
yaml-lint: | |
name: Yaml linting check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Yaml lint check | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_file: .yamllint.yml |