Skip to content

Decouple tika_default_field from use_tika. #1

Decouple tika_default_field from use_tika.

Decouple tika_default_field from use_tika. #1

Workflow file for this run

name: Black
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.13]
black-version: ["25.9.0"]
click-version: ["8.3.0"]
steps:
# git checkout
- uses: actions/checkout@v5
# python setup
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
# python cache
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# install black
- name: install black
run: pip install click==${{ matrix.click-version }} black==${{ matrix.black-version }}
# run black
- name: run black
run: black src/ --check --diff