fix: offload whole-buffer crypto off the event loop; run 2 uvicorn wo… #212
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: Lint | |
| on: | |
| push: | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install ruff | |
| run: pipx install ruff | |
| - name: Ruff check | |
| run: ruff check . | |
| - name: Ruff format | |
| run: ruff format --check . |