Skip to content

feat: Implement batch processing for generator steps #1104

feat: Implement batch processing for generator steps

feat: Implement batch processing for generator steps #1104

Workflow file for this run

name: Lint Python Code
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
python-version: "3.11"
- name: Install dependencies
run: make install
- name: Run linting
run: make lint