Skip to content

Commit 04651bf

Browse files
authored
fix: ruff workflow
1 parent 6442409 commit 04651bf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ruff.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ jobs:
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
18-
- name: Lint & format
18+
- name: Lint
1919
uses: chartboost/ruff-action@v1
2020
with:
21-
args: "check format --fix"
21+
args: "check --fix"
22+
- name: Format
23+
uses: chartboost/ruff-action@v1
24+
with:
25+
args: "format --fix"

0 commit comments

Comments
 (0)