reflex-search 1.4.0

A local-first, structure-aware code search engine for AI agents
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  test:
    name: Test (${{ matrix.os }})
    runs-on: ${{ matrix.os }}
    continue-on-error: ${{ matrix.optional == true }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        include:
          - os: macos-latest
            optional: true

    steps:
      - uses: actions/checkout@v4

      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy

      - name: Cache Rust dependencies
        uses: Swatinem/rust-cache@v2

      - name: Check formatting
        run: cargo fmt --check

      # Clippy runs as a warning gate. Upgrade to -D warnings once clippy
      # cleanup is complete (tracked in REF-12).
      - name: Clippy
        run: cargo clippy --all-targets

      - name: Run tests
        run: cargo test --all