feat: add configurable search filters for remote Weaviate datasets #74
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: Migration Check | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'backend/**' | |
| jobs: | |
| check-migrations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install just | |
| uses: extractions/setup-just@v2 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies | |
| run: | | |
| cd backend | |
| uv pip install -e . --system | |
| - name: Check for multiple heads | |
| run: | | |
| cd backend | |
| just check | |
| - name: Test fresh install | |
| run: | | |
| cd backend | |
| rm -f /tmp/ci_test.db | |
| SYFT_SQLITE_DB_PATH=/tmp/ci_test.db just upgrade | |
| echo "Fresh install migration succeeded" |