Skip to content

Commit 16a4d3c

Browse files
committed
be ruff
1 parent b4aed0b commit 16a4d3c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/mypy.yml renamed to .github/workflows/formatting_linting_checks.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mypy Type Checking for CLI
1+
name: Formatting, Linting, and Type Checking for CLI
22

33
on:
44
push:
@@ -18,8 +18,6 @@ jobs:
1818

1919
- name: Install uv
2020
uses: astral-sh/setup-uv@v5
21-
with:
22-
version: "0.5.30"
2321

2422
- name: install poetry as a tool
2523
run: uv tool install poetry
@@ -29,3 +27,9 @@ jobs:
2927

3028
- name: Run mypy on allowlist
3129
run: uvx poetry run mypy --non-interactive --config-file pyproject.toml @mypy_allowlist.txt
30+
31+
- name: Run ruff check
32+
run: uvx ruff check .
33+
34+
- name: Run ruff format
35+
run: uvx ruff format .

0 commit comments

Comments
 (0)