Skip to content

Commit 8ca0ee5

Browse files
authored
ci: Update Python versions in code checks (#495)
1 parent 9eab1c9 commit 8ca0ee5

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,19 +31,27 @@ 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.9", "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.9", "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.9", "3.10", "3.11", "3.12", "3.13"]'
4248

4349
integration_tests:
4450
name: Integration tests
4551
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
4652
secrets: inherit
53+
with:
54+
python-version: '["3.9", "3.13"]'
4755

4856
update_changelog:
4957
name: Update changelog

.github/workflows/release.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,27 @@ 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.9", "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.9", "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.9", "3.10", "3.11", "3.12", "3.13"]'
5359

5460
integration_tests:
5561
name: Integration tests
5662
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
5763
secrets: inherit
64+
with:
65+
python-version: '["3.9", "3.13"]'
5866

5967
update_changelog:
6068
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.9", "3.10", "3.11", "3.12", "3.13"]'
14+
python-versions: '["3.9", "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.9", "3.10", "3.11", "3.12", "3.13"]'
20+
python-versions: '["3.9", "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.9", "3.10", "3.11", "3.12", "3.13"]'
26+
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
2727

2828
docs_check:
2929
name: Docs check
@@ -35,4 +35,4 @@ jobs:
3535
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
3636
secrets: inherit
3737
with:
38-
python-version: '["3.9", "3.13"]'
38+
python-versions: '["3.9", "3.13"]'

0 commit comments

Comments
 (0)