mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-30 00:30:09 +00:00
* Add back workflow that runs in place of linting.yml * Add back workflow that runs in place of tests.yml
22 lines
396 B
YAML
22 lines
396 B
YAML
# If you change this name also do it in tests.yml and ci_metrics.yml
|
|
name: Tests
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
paths-ignore:
|
|
- "haystack/**/*.py"
|
|
- "test/**/*.py"
|
|
|
|
jobs:
|
|
catch-all:
|
|
name: Catch-all check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip tests
|
|
run: echo "Skipped!"
|