mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-06 23:13:50 +00:00
90ab9092b4
Pass build-tags: "fts5" to shared workflow to properly compile sqlite-vec-go-bindings with SQLite FTS5 support. This fixes test failures in hybrid vector storage tests that require CGO and FTS5 build tags. Requires shared-actions@8f7f235 or later.
26 lines
407 B
YAML
26 lines
407 B
YAML
name: Pull Request
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- "**"
|
|
- "!main"
|
|
|
|
permissions:
|
|
contents: write
|
|
actions: write
|
|
pull-requests: write
|
|
security-events: write
|
|
|
|
jobs:
|
|
pr-checks:
|
|
uses: lukaszraczylo/shared-actions/.github/workflows/go-pr.yaml@main
|
|
with:
|
|
go-version: ">=1.24"
|
|
lfs: true
|
|
build-tags: "fts5"
|
|
secrets: inherit
|