We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11a72a commit 6f80505Copy full SHA for 6f80505
.github/workflows/ci.yaml
@@ -322,6 +322,7 @@ jobs:
322
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
323
with:
324
version: "0.14.9"
325
+ args: "--version"
326
327
- run: ruff check --diff
328
.github/workflows/pr-auto-commit.yaml
@@ -39,6 +39,15 @@ jobs:
39
echo "Running cargo fmt --all on PR #${{ github.event.pull_request.number }}"
40
cargo fmt --all
41
42
+ - name: Install ruff
43
+ uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
44
+ with:
45
+ version: "0.14.9"
46
47
+
48
+ - run: ruff format
49
+ - run: ruff check --select I --fix
50
51
- name: Configure git
52
run: |
53
git config user.name "github-actions[bot]"
0 commit comments