Skip to content

Remove sqlx default-features (#8) #54

Remove sqlx default-features (#8)

Remove sqlx default-features (#8) #54

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ankane/setup-postgres@v1
with:
database: pgvector_rust_test
dev-files: true
- run: |
cd /tmp
git clone --branch v0.4.2 https://github.com/pgvector/pgvector.git
cd pgvector
make
sudo make install
# test features individually
- run: cargo test --features postgres
- run: cargo test --features sqlx
- run: cargo test --features diesel