Skip to content

Commit 5a4529f

Browse files
committed
Use consistent Python version in CI
1 parent 1e9659d commit 5a4529f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/beeper-ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-python@v2
15+
with:
16+
python-version: "3.12"
1517
- run: pip install poetry
1618
- run: poetry install
1719
- run: poetry run ruff check --output-format=github .
@@ -21,6 +23,8 @@ jobs:
2123
steps:
2224
- uses: actions/checkout@v2
2325
- uses: actions/setup-python@v2
26+
with:
27+
python-version: "3.12"
2428
- run: pip install poetry
2529
- run: poetry install --extras all
2630
- run: poetry run mypy
@@ -32,6 +36,8 @@ jobs:
3236
steps:
3337
- uses: actions/checkout@v2
3438
- uses: actions/setup-python@v2
39+
with:
40+
python-version: "3.12"
3541
- run: pip install poetry
3642
- run: poetry install --extras all
3743
- run: poetry run trial -j4 tests

0 commit comments

Comments
 (0)