Merge branch 'main' into feat/support-image-generate-for-gemini

This commit is contained in:
-LAN- 2025-03-17 16:40:52 +08:00
commit f31fda62c9
No known key found for this signature in database
GPG Key ID: 6BA0D108DED011FF

View File

@ -1,3 +1,4 @@
#!/bin/sh
# get the list of modified files
files=$(git diff --cached --name-only)
@ -32,7 +33,7 @@ if $api_modified; then
ruff check --fix ./api
# run Ruff linter checks
ruff check --preview ./api || status=$?
ruff check ./api || status=$?
status=${status:-0}