Skip to content

added builder and more tests for Pinecone #41

added builder and more tests for Pinecone

added builder and more tests for Pinecone #41

Workflow file for this run

name: CI
on:
pull_request: {}
push: {}
workflow_dispatch: {}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable]
steps:
- uses: actions/checkout@v4
- uses: hecrj/setup-rust-action@v2
with:
rust-version: ${{ matrix.rust }}
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose