Skip to content

Feature: Impled vector search #90

Feature: Impled vector search

Feature: Impled vector search #90

Workflow file for this run

name: Rust
on:
pull_request_target:
types: [ assigned, opened, synchronize ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build project
run: cargo build --verbose
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fmt
run: cargo fmt --all --verbose --check
test:
needs: [build, fmt]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: cargo test --all --verbose