Skip to content

Commit bfb1655

Browse files
committed
fix: rename
1 parent 4d1c45d commit bfb1655

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pre-commit
1+
name: QA
22

33
on:
44
pull_request:
@@ -7,8 +7,8 @@ on:
77
- main
88

99
jobs:
10-
pre-commit:
11-
name: Pre-commit checks
10+
QA:
11+
name: QA checks
1212
runs-on: ubuntu-latest
1313

1414
steps:
@@ -32,8 +32,8 @@ jobs:
3232
- name: Check formatting
3333
run: uv run ruff format --check .
3434

35-
- name: Type check
36-
run: uv run basedpyright .
35+
- name: Type check package
36+
run: uv run basedpyright -p pyproject.toml
3737

3838
- name: Contract tests
3939
run: uv run pytest tests/test_contracts.py -n auto

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373
- name: Check formatting
7474
run: uv run ruff format --check .
7575

76-
- name: Type check
77-
run: uv run basedpyright .
76+
- name: Type check package
77+
run: uv run basedpyright -p pyproject.toml
7878

7979
- name: Contract tests
8080
run: uv run pytest tests/test_contracts.py -n auto

scripts/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def main() -> None:
106106

107107
run(["uv", "run", "ruff", "check", "--select", "I", "."])
108108
run(["uv", "run", "ruff", "format", "--check", "."])
109-
run(["uv", "run", "basedpyright", "."])
109+
run(["uv", "run", "basedpyright", "-p", "pyproject.toml"])
110110
run(["uv", "run", "pytest", "tests/test_contracts.py", "-n", "auto"])
111111
run(["uv", "build"])
112112
run(["uv", "run", "twine", "check", *sorted(str(path) for path in dist.iterdir())])

0 commit comments

Comments
 (0)