mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-06 20:17:14 +00:00
* add preview workflows * feedback * feedback * use preview extra * remove coverage and add separate e2e * rename workflow file for consistency * trigger ci * undo trigger * torch import in testing * add deps to unit tests * feedback * run container instead of service * comment * add if statement * fix tika version * separate out win integration tests * separate out all CIs * try installing docker on macos * exclude tika * remove tika docker
22 lines
419 B
YAML
22 lines
419 B
YAML
# If you change this name also do it in tests_preview.yml
|
|
name: Tests (Preview)
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
paths-ignore:
|
|
- "haystack/preview/**/*.py"
|
|
- "test/preview/**/*.py"
|
|
|
|
jobs:
|
|
catch-all:
|
|
name: Catch-all check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip preview tests
|
|
run: echo "Skipped!"
|