Skip to content

Commit 31769e3

Browse files
committed
.
1 parent 12bf741 commit 31769e3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/reformat-code.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- name: install Python
16-
run: apt install python
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.12"
19+
architecture: "x64"
20+
- name: Display Python version
21+
run: python -c "import sys; print(sys.version)"
1722

1823
- name: Setup poetry and dev requirements
1924
run: |

0 commit comments

Comments
 (0)