Skip to content

added one integration test #32

added one integration test

added one integration test #32

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
env:
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
run: cargo test --verbose