mirror of
https://github.com/DS4SD/docling.git
synced 2025-07-26 12:04:31 +00:00
* update deepsearch-glm for python 3.12 support Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> * enable python 3.12 in ci tests Signed-off-by: Michele Dolfi <dol@zurich.ibm.com> --------- Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
17 lines
380 B
YAML
17 lines
380 B
YAML
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
run-checks:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.11', '3.12']
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/setup-poetry
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Run styling check
|
|
run: poetry run pre-commit run --all-files
|