Skip to content

fix: adapt optimum, ragas, elasticsearch, opensearch to APIs removed in Haystack 3.0 #9344

fix: adapt optimum, ragas, elasticsearch, opensearch to APIs removed in Haystack 3.0

fix: adapt optimum, ragas, elasticsearch, opensearch to APIs removed in Haystack 3.0 #9344

name: Core / Check Integration Format
on:
- pull_request
jobs:
check:
runs-on: ubuntu-slim
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Ensure no hyphens
run: |
set +e
find . -name "*-*" -type d -maxdepth 2 | grep integrations
test "$?" -eq 1 && exit 0 || echo "::error::Names of folders in ./integrations must not contain hyphens" && exit 1