fix(mongodb): Atlas rejects the ':' separator in a search index name #761
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: Validate Datasets | |
| on: | |
| push: | |
| paths: | |
| - 'datasets/datasets.json' | |
| - 'experiments/configurations/**' | |
| - 'src/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - '.github/workflows/validate-datasets.yml' | |
| pull_request: | |
| paths: | |
| - 'datasets/datasets.json' | |
| - 'experiments/configurations/**' | |
| - 'src/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - '.github/workflows/validate-datasets.yml' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libhdf5-dev pkg-config | |
| - name: Cache Rust toolchain and dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Validate datasets | |
| run: cargo run --release --bin vector-db-benchmark -- --describe datasets | |
| - name: Validate engine configurations | |
| run: cargo run --release --bin vector-db-benchmark -- --describe engines |