make collection_id primary key for segment, fix system tests #583
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: Chroma Worker Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- '**' | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout chroma-hnswlib | |
uses: actions/checkout@v3 | |
with: | |
repository: chroma-core/hnswlib | |
path: hnswlib | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: chroma | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
- name: Build | |
run: cargo build --verbose | |
working-directory: chroma | |
- name: Test | |
run: cargo test --verbose | |
working-directory: chroma |