Skip to content

feat: refactor vector manager #715

feat: refactor vector manager

feat: refactor vector manager #715

Workflow file for this run

name: Test
on:
pull_request:
jobs:
go-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- run: go test -v ./...
- run: go vet -v ./...
node-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm ci
- run: npm run build
- run: npm test