Document Index Tests #454
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: Document Index Tests | |
| on: | |
| schedule: | |
| - cron: '0 5 * * *' # Runs daily at 5:00 UTC | |
| workflow_dispatch: # Allows manual trigger | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/intelligence_layer/connectors/document_index/**" | |
| - "tests/connectors/document_index/**" | |
| pull_request: | |
| paths: | |
| - "src/intelligence_layer/connectors/document_index/**" | |
| - "tests/connectors/document_index/**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| python-tests: | |
| uses: ./.github/workflows/document-index-tests.yml | |
| secrets: inherit |