Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomaubier authored Feb 3, 2025
1 parent 73e9305 commit f50f36e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,23 @@ jobs:

strategy:
matrix:
os: [macos-latest, windows-latest] # TODO add ubuntu-latest, windows-latest
os: [windows-latest] # TODO add ubuntu-latest, windows-latest, macos-latest
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 f50f36e

Please sign in to comment.