Skip to content

Commit d300089

Browse files
committed
test
1 parent 30ca4ce commit d300089

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
os: [ubuntu-22.04, windows-latest, macos-latest]
2020

2121
steps:
22+
- run: where which
23+
if: runner.os == 'Windows'
2224
- uses: actions/checkout@v4
2325
with:
2426
submodules: true

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ def run(self):
3232
# make not rebuilding for different arch
3333
mpy_cross_exe.unlink(missing_ok=True)
3434

35+
import os
36+
37+
print(os.environ["PATH"])
38+
os.system("where which")
39+
3540
make_command = [
3641
"make",
3742
"-C",

0 commit comments

Comments
 (0)