Skip to content

Commit f7e7c47

Browse files
authored
ci: Fix missing Python versions (#41)
1 parent 411c7f1 commit f7e7c47

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/pre_release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
run_code_checks:
3232
name: Run code checks
3333
uses: ./.github/workflows/run_code_checks.yaml
34+
with:
35+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
3436

3537
update_changelog:
3638
name: Update changelog

.github/workflows/run_code_checks.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,17 @@ jobs:
99
lint_check:
1010
name: Lint check
1111
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
12+
with:
13+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
1214

1315
type_check:
1416
name: Type check
1517
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
18+
with:
19+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
1620

1721
unit_tests:
1822
name: Unit tests
1923
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
24+
with:
25+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'

0 commit comments

Comments
 (0)