Skip to content

refactoring: clean docling method #14

refactoring: clean docling method

refactoring: clean docling method #14

Workflow file for this run

name: Build
on:
push:
branches: [main]
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'Justfile'
jobs:
check:
name: Build installers from python project
strategy:
matrix:
os: ['windows-latest', 'ubuntu-latest', 'ubuntu-24.04-arm', 'macos-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Prepare repository
uses: ./.github/actions/prepare
- name: Run tests
if: runner.os != 'Windows'
run: just tests
- name: Build
run: just build
- uses: actions/upload-artifact@v5
with:
name: lw-python-${{ matrix.os }}
include-hidden-files: true
path: ./dist/*