Skip to content

Commit 9eab1c9

Browse files
authored
ci: fix Apify workflows integration tests reference (#494)
1 parent 5de04c9 commit 9eab1c9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/run_code_checks.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@ jobs:
1010
lint_check:
1111
name: Lint check
1212
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
13+
with:
14+
python-version: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
1315

1416
type_check:
1517
name: Type check
1618
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
19+
with:
20+
python-version: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
1721

1822
unit_tests:
1923
name: Unit tests
2024
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
25+
with:
26+
python-version: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
2127

2228
docs_check:
2329
name: Docs check
@@ -26,5 +32,7 @@ jobs:
2632
integration_tests:
2733
name: Integration tests
2834
needs: [lint_check, type_check, unit_tests]
29-
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@fix-integration-tests-from-forks
35+
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
3036
secrets: inherit
37+
with:
38+
python-version: '["3.9", "3.13"]'

0 commit comments

Comments
 (0)