mirror of
https://github.com/DS4SD/docling.git
synced 2025-07-26 20:14:47 +00:00
skip batch_convert
Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
parent
c10f555749
commit
d7a447603d
6
.github/workflows/checks.yml
vendored
6
.github/workflows/checks.yml
vendored
@ -22,6 +22,12 @@ jobs:
|
||||
- name: Run examples
|
||||
run: |
|
||||
for file in examples/*.py; do
|
||||
# Skip batch_convert.py
|
||||
if [[ "$(basename "$file")" == "batch_convert.py" ]]; then
|
||||
echo "Skipping $file"
|
||||
continue
|
||||
fi
|
||||
|
||||
echo "Running example $file"
|
||||
poetry run python "$file" || exit 1
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user