diff --git a/.github/workflows/pre_release.yaml b/.github/workflows/pre_release.yaml index adf7342d..fefe0509 100644 --- a/.github/workflows/pre_release.yaml +++ b/.github/workflows/pre_release.yaml @@ -31,14 +31,20 @@ jobs: lint_check: name: Lint check uses: apify/workflows/.github/workflows/python_lint_check.yaml@main + with: + python-versions: '["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-versions: '["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-versions: '["3.10", "3.11", "3.12", "3.13"]' async_docstrings: name: Async dostrings check @@ -48,6 +54,8 @@ jobs: name: Integration tests uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main secrets: inherit + with: + python-versions: '["3.10", "3.11", "3.12", "3.13"]' update_changelog: name: Update changelog diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8316ab9b..641a7a8c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,14 +42,20 @@ jobs: lint_check: name: Lint check uses: apify/workflows/.github/workflows/python_lint_check.yaml@main + with: + python-versions: '["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-versions: '["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-versions: '["3.10", "3.11", "3.12", "3.13"]' async_docstrings: name: Async dostrings check @@ -59,6 +65,8 @@ jobs: name: Integration tests uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main secrets: inherit + with: + python-versions: '["3.10", "3.11", "3.12", "3.13"]' update_changelog: name: Update changelog diff --git a/.github/workflows/run_code_checks.yaml b/.github/workflows/run_code_checks.yaml index 2d14eac7..afdb0cee 100644 --- a/.github/workflows/run_code_checks.yaml +++ b/.github/workflows/run_code_checks.yaml @@ -11,19 +11,19 @@ jobs: name: Lint check uses: apify/workflows/.github/workflows/python_lint_check.yaml@main with: - python-version: '["3.10", "3.11", "3.12", "3.13"]' + python-versions: '["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.10", "3.11", "3.12", "3.13"]' + python-versions: '["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.10", "3.11", "3.12", "3.13"]' + python-versions: '["3.10", "3.11", "3.12", "3.13"]' async_docstrings: name: Async dostrings check @@ -38,5 +38,5 @@ jobs: needs: [lint_check, type_check, unit_tests] uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main with: - python-version: '["3.10", "3.11", "3.12", "3.13"]' + python-versions: '["3.10", "3.11", "3.12", "3.13"]' secrets: inherit