feat: Fast model loading for inference #70
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
| name: Spellcheck | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "release-**" | |
| paths: | |
| - '**.md' | |
| - 'tox.ini' | |
| - '.spellcheck*' | |
| - '.github/workflows/spellcheck.yml' # This workflow file | |
| env: | |
| LC_ALL: en_US.UTF-8 | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| contents: read | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Harden Runner" | |
| uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
| with: | |
| egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
| - name: Checkout Code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install aspell | |
| run: | | |
| sudo sudo apt-get update | |
| sudo apt-get install -y aspell aspell-en | |
| - name: Setup Python 3.11 | |
| uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
| with: | |
| python-version: 3.11 | |
| cache: pip | |
| cache-dependency-path: | | |
| **/pyproject.toml | |
| - name: Install tox dependencies | |
| run: python -m pip install --upgrade tox | |
| - name: Run spellchecker | |
| run: python -m tox -e spellcheck |