diff --git a/.github/workflows/run_code_checks.yaml b/.github/workflows/run_code_checks.yaml index b424a17b..12633880 100644 --- a/.github/workflows/run_code_checks.yaml +++ b/.github/workflows/run_code_checks.yaml @@ -10,14 +10,20 @@ jobs: lint_check: name: Lint check uses: apify/workflows/.github/workflows/python_lint_check.yaml@main + with: + python-version: '["3.9", "3.10", "3.11", "3.12", "3.13"]' type_check: name: Type check uses: apify/workflows/.github/workflows/python_type_check.yaml@main + with: + python-version: '["3.9", "3.10", "3.11", "3.12", "3.13"]' unit_tests: name: Unit tests uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main + with: + python-version: '["3.9", "3.10", "3.11", "3.12", "3.13"]' docs_check: name: Docs check @@ -26,5 +32,7 @@ jobs: integration_tests: name: Integration tests needs: [lint_check, type_check, unit_tests] - uses: apify/workflows/.github/workflows/python_integration_tests.yaml@fix-integration-tests-from-forks + uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main secrets: inherit + with: + python-version: '["3.9", "3.13"]'