feat: Unify tokenizer API and add support for pdb.icu and pdb.edge_ngram #112
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 | |
| jobs: | |
| check-typo: | |
| name: Check Typo using codespell | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Git Repository | |
| uses: actions/checkout@v6 | |
| # The `skip` parameter is a total mess, read up before adding. | |
| # https://github.com/codespell-project/codespell/issues/1915 | |
| - name: Check Typo using codespell | |
| uses: codespell-project/actions-codespell@v2 | |
| with: | |
| check_filenames: true | |
| ignore_words_file: .codespellignore |