Skip to content

Split steps into separate workflows #1

Split steps into separate workflows

Split steps into separate workflows #1

Workflow file for this run

name: mac
on:
push:
paths:
- .github/workflows/step-mac.yml
jobs:
mac:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-15, macos-14, macos-13]
steps:
- run: brew install postgresql@17
- run: brew link --overwrite postgresql@17
- name: Install pgvector
run: brew install pgvector
- run: brew services start postgresql@17 && sleep 1
- run: psql -d postgres -c 'CREATE EXTENSION vector'