We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ba566a commit 7f14921Copy full SHA for 7f14921
.github/workflows/main.yml
@@ -4,7 +4,7 @@ on: [push, pull_request]
4
5
jobs:
6
lint:
7
- name: ruff lint with fix
+ name: ruff lint
8
runs-on: ubuntu-latest
9
steps:
10
- name: checkout repo
@@ -21,5 +21,11 @@ jobs:
21
uv venv .venv
22
UV_VENV=.venv uv pip install ruff
23
24
- - name: run ruff
25
- run: UV_VENV=.venv uv run -- ruff format --check --fail .
+ - name: run ruff check
+ 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
0 commit comments