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 774355f commit e750064Copy full SHA for e750064
.github/workflows/testinghostedtoollcache.yml
@@ -1,21 +1,27 @@
1
-name: run tests#1187
+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.13"
19
architecture: 'arm64'
20
21
+
+ - name: Show Python installations (debug)
+ run: py --list-paths
22
+ - name: Confirm Python version and architecture
23
+ run: |
24
+ python --version
25
+ python -c "import platform; print(platform.architecture())"
26
27
0 commit comments