Skip to content

Update README with SearchApi branding, fix references, and sync emulations #89

Update README with SearchApi branding, fix references, and sync emulations

Update README with SearchApi branding, fix references, and sync emulations #89

Workflow file for this run

name: CI
on:
push:
tags:
- '*'
pull_request:
paths-ignore:
- 'docs/**'
- 'benchmark/**'
- 'examples/**'
- '*.md'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
rust-checks:
name: Rust Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Run cargo fmt
run: cargo fmt -- --check
- name: Run cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
ruby-binding-tests:
name: Ruby Binding Tests
runs-on: ${{ matrix.os }}
services:
httpbin:
image: kennethreitz/httpbin
ports:
- 8080:80
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.3', '3.4', '4.0']
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Compile native extension
run: bundle exec rake compile
- name: Run tests
run: bundle exec rake test