Add BM25 search and dependency graph as tools in the MCP server #254
Workflow file for this run
This file contains hidden or 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: Rust | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'www/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'www/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - name: Install Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@2fcdc490d667999e01ddbbf0f2823181beef6b39 # v1.15.0 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Rust build | |
| run: cd crates/client && cargo build --release |