Skip to content

test: integration tests for document_store.py #8128

test: integration tests for document_store.py

test: integration tests for document_store.py #8128

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