Skip to content

Commit ced8df2

Browse files
committed
"Fix" target name
1 parent f4cbe5f commit ced8df2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/on-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Run unit tests
4949
run: make unit-tests COV_REPORT=xml
5050

51-
type-check:
51+
check-typing:
5252
needs: [unit-tests]
5353
runs-on: ubuntu-latest
5454

@@ -61,7 +61,7 @@ jobs:
6161
enable-cache: true
6262
python-version: "3.14"
6363
- name: Run type checks
64-
run: make type-check
64+
run: make check-typing
6565

6666
docs-build:
6767
needs: [unit-tests]
@@ -124,11 +124,11 @@ jobs:
124124

125125
distribution:
126126
runs-on: ubuntu-latest
127-
needs: [unit-tests, type-check, docs-build, integration-tests]
127+
needs: [unit-tests, check-typing, docs-build, integration-tests]
128128
if: |
129129
always() &&
130130
needs.unit-tests.result == 'success' &&
131-
needs.type-check.result == 'success' &&
131+
needs.check-typing.result == 'success' &&
132132
needs.docs-build.result == 'success' &&
133133
(needs.integration-tests.result == 'success' || needs.integration-tests.result == 'skipped')
134134

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
COV_REPORT := html
22
PYTHON := uv run --frozen
33

4-
default: qa unit-tests type-check
4+
default: qa unit-tests check-typing
55

66
qa:
77
$(PYTHON) -m pre_commit run --all-files
88

99
unit-tests:
1010
$(PYTHON) -m pytest -vv --cov=. --cov-report=$(COV_REPORT)
1111

12-
type-check:
12+
check-typing:
1313
$(PYTHON) -m mypy .
1414

1515
docs-build:

0 commit comments

Comments
 (0)