From 3136b6a05bfabf843e533838d7a0c056e73986b1 Mon Sep 17 00:00:00 2001 From: Cody Guldner Date: Thu, 23 Jul 2026 09:00:17 -0500 Subject: [PATCH] Run ruff format and check after code generation in spec_update CI runs `ruff format --check` and `ruff check` on the dropbox package, so the spec_update workflow needs to format and fix the generated code before committing. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/spec_update.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/spec_update.yml b/.github/workflows/spec_update.yml index 4522a512..54ed8805 100644 --- a/.github/workflows/spec_update.yml +++ b/.github/workflows/spec_update.yml @@ -83,7 +83,10 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt + pip install ruff python generate_base_client.py + ruff format dropbox + ruff check --fix dropbox - name: Close Old Pull Requests id: close-old-prs