Skip to content

Commit

Permalink
fixup! Add chunking functionality for AI-powered analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
gbp committed Sep 16, 2024
1 parent 617d82a commit 0ed21fc
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
fail-fast: false
matrix:
include:
- { ruby: '3.1', postgres: 13.5 }
- { ruby: '3.2', postgres: 13.5 }
- { ruby: '3.1', postgres: 13 }
- { ruby: '3.2', postgres: 13 }

services:
postgres:
image: fixmystreet/postgres:${{ matrix.postgres }}
image: postgres:${{ matrix.postgres }}
env:
POSTGRES_PASSWORD: postgres
ports:
Expand Down Expand Up @@ -94,6 +94,11 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Install pgvector
run: |
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y
sudo apt-get install postgresql-${{ matrix.postgres }}-pgvector
- name: Setup database
run: |
psql postgres://postgres:postgres@localhost:5432 <<-EOSQL
Expand Down

0 comments on commit 0ed21fc

Please sign in to comment.