Skip to content

Commit c8134c5

Browse files
committed
Remove unnecessary checks
1 parent e4077f6 commit c8134c5

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/pre_release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
name: Unit tests
3838
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
3939

40+
async_docstrings:
41+
name: Async dostrings check
42+
uses: ./.github/workflows/_async_docstrings_check.yaml
43+
4044
integration_tests:
4145
name: Integration tests
4246
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ jobs:
5656
name: Unit tests
5757
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
5858

59+
async_docstrings:
60+
name: Async dostrings check
61+
uses: ./.github/workflows/_async_docstrings_check.yaml
62+
5963
integration_tests:
6064
name: Integration tests
6165
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main

Makefile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.PHONY: clean install-dev build publish-to-pypi lint type-check unit-tests unit-tests-cov \
22
integration-tests format check-code check-async-docstrings fix-async-docstrings \
3-
check-version-availability check-changelog-entry check-version-conflict build-api-reference \
4-
run-docs
3+
build-api-reference run-docs
54

65
DIRS_WITH_CODE = src tests scripts
76

@@ -46,15 +45,9 @@ format:
4645
check-async-docstrings:
4746
poetry run python scripts/check_async_docstrings.py
4847

49-
check-changelog-entry:
50-
poetry run python scripts/check_changelog_entry.py
51-
52-
check-version-conflict:
53-
poetry run python scripts/check_version_conflict.py
54-
5548
# The check-code target runs a series of checks equivalent to those performed by pre-commit hooks
5649
# and the run_checks.yaml GitHub Actions workflow.
57-
check-code: lint type-check unit-tests check-async-docstrings check-changelog-entry check-version-conflict
50+
check-code: lint type-check unit-tests check-async-docstrings
5851

5952
fix-async-docstrings:
6053
poetry run python scripts/fix_async_docstrings.py

0 commit comments

Comments
 (0)