Skip to content

feat: add async job mode to Docling Serve converter #9003

feat: add async job mode to Docling Serve converter

feat: add async job mode to Docling Serve converter #9003

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