Skip to content

Commit

Permalink
fix(github-actions): 修正ruff-lint运行时的缩进错误
Browse files Browse the repository at this point in the history
修正了`.github/workflows/ruff.yml`中Ruff行动的缩进错误。删除了`with`字段下不必要的空格,确保Ruff按预期运行,现在可以正确应用由`--fix`标志触发的代码样式修复。
  • Loading branch information
17TheWord committed Aug 24, 2024
1 parent 6c4edbb commit 1e2bc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
- name: Run Ruff Lint
uses: chartboost/ruff-action@v1
with:
args: --fix .
args: check --fix .

0 comments on commit 1e2bc94

Please sign in to comment.