Skip to content

Commit 63d5d8b

Browse files
committed
Test Windows architecture commands
1 parent 1cc8d69 commit 63d5d8b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
runs-on: windows-11-arm
18+
steps:
19+
- name: Check architecture
20+
shell: bash
21+
run: |
22+
echo "Processor architecture: $PROCESSOR_ARCHITECTURE"
23+
uname -m

0 commit comments

Comments
 (0)