Skip to content

chore: simplify patch step improve performance #3

chore: simplify patch step improve performance

chore: simplify patch step improve performance #3

Workflow file for this run

name: python examples checks
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install promplate[all] promplate-pyodide isort black pyodide-py
yarn global add pyright
- name: Run isort check
run: |
isort . --check --diff
- name: Run black check
run: |
black . --check --diff
- name: Run pyright check
run: |
pyright