Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Commit ddfdd53

Browse files
committed
Fix release.yml
1 parent 3c8b73b commit ddfdd53

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/periodic.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ jobs:
6161
target: ${{ matrix.platform.target }}
6262
components: rustfmt, clippy
6363

64+
- name: Setup Python
65+
uses: actions/setup-python@v6
66+
with:
67+
python-version: 3.x
68+
6469
- name: Run test
6570
shell: bash
6671
run: |

.github/workflows/regression.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ jobs:
6464
target: ${{ matrix.platform.target }}
6565
components: rustfmt, clippy
6666

67+
- name: Setup Python
68+
uses: actions/setup-python@v6
69+
with:
70+
python-version: 3.x
71+
6772
- name: Run test
6873
shell: bash
6974
run: |

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ jobs:
7171
target: ${{ matrix.platform.target }}
7272
components: rustfmt, clippy
7373

74+
- name: Setup Python
75+
uses: actions/setup-python@v6
76+
with:
77+
python-version: 3.x
78+
7479
- name: Run test
7580
shell: bash
7681
run: |

0 commit comments

Comments
 (0)