docling/.github/workflows/checks.yml
Michele Dolfi 75332e9a66 add Github Actions
Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
2024-07-15 18:00:23 +02:00

17 lines
372 B
YAML

on:
workflow_call:
jobs:
run-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
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