Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomaubier committed Feb 3, 2025
2 parents 3fc7d30 + f50f36e commit 0a0c7f9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ jobs:
python-version: ['3.12']

steps:
- name: Check Windows Version
run: |
$os = (Get-ComputerInfo).OsName
$version = (Get-ComputerInfo).OsVersion
Write-Output "Windows Version: $os ($version)"
shell: pwsh

- name: Get System Architecture
run: |
$arch = (Get-ComputerInfo).OsArchitecture
Write-Output "Architecture: $arch"
shell: pwsh

- uses: actions/checkout@v4

- name: Set up Python
Expand Down

0 comments on commit 0a0c7f9

Please sign in to comment.