Skip to content

Test / instructor-embedders #395

Test / instructor-embedders

Test / instructor-embedders #395

name: Test / instructor-embedders
on:
schedule:
- cron: "0 0 * * *"
pull_request:
paths:
- "integrations/instructor_embedders/**"
- ".github/workflows/instructor_embedders.yml"
defaults:
run:
working-directory: integrations/instructor_embedders
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Hatch
run: pip install --upgrade hatch
- name: Lint
run: hatch run lint:all
- name: Generate docs
if: runner.os == 'Linux'
run: hatch run docs
- name: Run tests
run: hatch run cov-retry
- name: Nightly - run unit tests with Haystack main branch
if: github.event_name == 'schedule'
run: |
hatch run pip install git+https://github.com/deepset-ai/haystack.git
hatch run cov-retry -m "not integration"
- name: Send event to Datadog for nightly failures
if: failure() && github.event_name == 'schedule'
uses: ./.github/actions/send_failure
with:
title: |
Core integrations nightly tests failure: ${{ github.workflow }}
api-key: ${{ secrets.CORE_DATADOG_API_KEY }}