Skip to content

Commit d1d7dc9

Browse files
authored
Add Python setup to unity_unittest workflow
Added Python setup step to the Unity CI workflow.
1 parent b783771 commit d1d7dc9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/unity_unittest.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,14 @@ jobs:
121121
- uses: actions/setup-dotnet@v3
122122
with:
123123
dotnet-version: '6.x.x'
124+
- name: Setup Python
125+
uses: actions/setup-python@v5
126+
with:
127+
python-version: '3.14.0'
124128
- uses: actions/checkout@v3
125129
- name: UnitTest-v8
126-
continue-on-error: true
127130
run: |
128-
set "PATH=C:\hostedtoolcache\windows\Python\3.14.0\x64;%PATH%"
131+
set
129132
cd unity
130133
npm i
131134
cd test/dotnet

0 commit comments

Comments
 (0)