feat: add trigram index to contracts table, enable fts on contracts #72
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Validate | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: validate-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Goldsky turbo CLI | |
| run: | | |
| curl -fsSL https://install-turbo.goldsky.com | bash | |
| echo "$HOME/.goldsky/bin" >> "$GITHUB_PATH" | |
| - name: Authenticate Goldsky CLI | |
| if: env.GOLDSKY_API_KEY != '' | |
| env: | |
| GOLDSKY_API_KEY: ${{ secrets.GOLDSKY_API_KEY }} | |
| run: | | |
| mkdir -p "$HOME/.goldsky" | |
| printf '%s' "$GOLDSKY_API_KEY" > "$HOME/.goldsky/auth_token" | |
| chmod 600 "$HOME/.goldsky/auth_token" | |
| - name: Validate Goldsky pipelines | |
| if: env.GOLDSKY_API_KEY != '' | |
| env: | |
| GOLDSKY_API_KEY: ${{ secrets.GOLDSKY_API_KEY }} | |
| run: bash goldsky/scripts/validate-pipelines.sh |