chore(deps): update dependency @sveltejs/adapter-vercel to v6 [security] #1439
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: python examples checks | |
| on: [push, pull_request] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up python | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.13" | |
| activate-environment: true | |
| - name: Install dependencies | |
| run: | | |
| uv pip install promplate[all] promplate-pyodide isort black pyodide-py --color always | |
| - name: Run isort check | |
| run: | | |
| isort . --check --diff | |
| - name: Run black check | |
| run: | | |
| black . --check --diff | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Run pyright check | |
| run: | | |
| bunx pyright |