Skip to content

Commit 0ce9330

Browse files
authored
Create testinghostedtoollcache.yml
1 parent f2426d8 commit 0ce9330

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: run tests#1187
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: windows-11-arm
9+
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
15+
# - name: Set up Python
16+
# uses: actions/setup-python@v5
17+
# with:
18+
# python-version: "3.12"
19+
20+
- name: Show Python .exe files in hosted tool cache
21+
run: |
22+
echo "=== Toolcache Python .exe files ==="
23+
Get-ChildItem -Path "C:\hostedtoolcache\windows\Python" -Recurse -Filter *.exe | ForEach-Object { $_.FullName }
24+

0 commit comments

Comments
 (0)