Skip to content

Commit 7f14921

Browse files
fix: remove ruff --fix
1 parent 2ba566a commit 7f14921

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
lint:
7-
name: ruff lint with fix
7+
name: ruff lint
88
runs-on: ubuntu-latest
99
steps:
1010
- name: checkout repo
@@ -21,5 +21,11 @@ jobs:
2121
uv venv .venv
2222
UV_VENV=.venv uv pip install ruff
2323
24-
- name: run ruff
25-
run: UV_VENV=.venv uv run -- ruff format --check --fail .
24+
- name: run ruff check
25+
run: UV_VENV=.venv uv run -- ruff check .
26+
27+
- name: check formatting
28+
run: UV_VENV=.venv uv run -- ruff format --check .
29+
30+
- name: run ruff lint
31+
run: UV_VENV=.venv uv run -- ruff check .

0 commit comments

Comments
 (0)