Skip to content

Fixed CI

Fixed CI #61

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# TODO figure out error with 1.22 on CI
go: ["1.21", "1.20"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: false # depends on go.sum
- run: go mod tidy
- uses: ankane/setup-postgres@v1
with:
database: pgvector_go_test
dev-files: true
- run: |
cd /tmp
git clone --branch v0.6.2 https://github.com/pgvector/pgvector.git
cd pgvector
make
sudo make install
- run: go generate ./ent && go mod tidy
- run: go test -v