Skip to content

Commit 230595b

Browse files
authored
ci: Update Python versions in code checks (#433)
1 parent 768b7b5 commit 230595b

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

.github/workflows/pre_release.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,20 @@ jobs:
3131
lint_check:
3232
name: Lint check
3333
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
34+
with:
35+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
3436

3537
type_check:
3638
name: Type check
3739
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
40+
with:
41+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
3842

3943
unit_tests:
4044
name: Unit tests
4145
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
46+
with:
47+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
4248

4349
async_docstrings:
4450
name: Async dostrings check
@@ -48,6 +54,8 @@ jobs:
4854
name: Integration tests
4955
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
5056
secrets: inherit
57+
with:
58+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
5159

5260
update_changelog:
5361
name: Update changelog

.github/workflows/release.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,20 @@ jobs:
4242
lint_check:
4343
name: Lint check
4444
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
45+
with:
46+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
4547

4648
type_check:
4749
name: Type check
4850
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
51+
with:
52+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
4953

5054
unit_tests:
5155
name: Unit tests
5256
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
57+
with:
58+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
5359

5460
async_docstrings:
5561
name: Async dostrings check
@@ -59,6 +65,8 @@ jobs:
5965
name: Integration tests
6066
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
6167
secrets: inherit
68+
with:
69+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
6270

6371
update_changelog:
6472
name: Update changelog

.github/workflows/run_code_checks.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
name: Lint check
1212
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
1313
with:
14-
python-version: '["3.10", "3.11", "3.12", "3.13"]'
14+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
1515

1616
type_check:
1717
name: Type check
1818
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
1919
with:
20-
python-version: '["3.10", "3.11", "3.12", "3.13"]'
20+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
2121

2222
unit_tests:
2323
name: Unit tests
2424
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
2525
with:
26-
python-version: '["3.10", "3.11", "3.12", "3.13"]'
26+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
2727

2828
async_docstrings:
2929
name: Async dostrings check
@@ -38,5 +38,5 @@ jobs:
3838
needs: [lint_check, type_check, unit_tests]
3939
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
4040
with:
41-
python-version: '["3.10", "3.11", "3.12", "3.13"]'
41+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
4242
secrets: inherit

0 commit comments

Comments
 (0)