Skip to content

Add type definition to Vector Ecto type #92

Add type definition to Vector Ecto type

Add type definition to Vector Ecto type #92

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.18
otp: 27
- elixir: 1.15
otp: 24
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- run: mix deps.get
- uses: ankane/setup-postgres@v1
with:
database: pgvector_elixir_test
dev-files: true
- run: |
cd /tmp
git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git
cd pgvector
make
sudo make install
- run: mix test