We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cc8d69 commit 63d5d8bCopy full SHA for 63d5d8b
.github/workflows/understanding-windows.yml
@@ -0,0 +1,23 @@
1
+name: Test Windows Architecture
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ windows-architecture-powershell:
8
+ runs-on: windows-11-arm
9
+ steps:
10
+ - name: Check architecture
11
+ shell: powershell
12
+ run: |
13
+ Write-Host "Processor architecture: $env:PROCESSOR_ARCHITECTURE"
14
+ [System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture
15
16
+ windows-architecture-bash:
17
18
19
20
+ shell: bash
21
22
+ echo "Processor architecture: $PROCESSOR_ARCHITECTURE"
23
+ uname -m
0 commit comments