Skip to content

feat: Update Optimum components to auto call run warm_up and don't modify Documents in place #6652

feat: Update Optimum components to auto call run warm_up and don't modify Documents in place

feat: Update Optimum components to auto call run warm_up and don't modify Documents in place #6652

name: Core / Check Integration Format
on:
- pull_request
jobs:
check:
runs-on: ubuntu-slim
steps:
- name: Checkout
uses: actions/checkout@v6
- 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