Skip to content

feat!: rename bm25 APIs to paradedb and always use the paradedb access method #331

feat!: rename bm25 APIs to paradedb and always use the paradedb access method

feat!: rename bm25 APIs to paradedb and always use the paradedb access method #331

Workflow file for this run

# workflows/check-typo.yml
#
# Check Typo
# Check Typo using codespell.
name: Check Typo
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
concurrency:
group: check-typo-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check-typo:
name: Check Typo using codespell
runs-on: ubuntu-latest
steps:
- name: Checkout Git Repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install codespell
run: python -m pip install codespell
- name: Check Typo using codespell
run: codespell --config .codespellrc --check-filenames