We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2426d8 commit 0ce9330Copy full SHA for 0ce9330
.github/workflows/testinghostedtoollcache.yml
@@ -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