Skip to content

Commit

Permalink
added print of os, platform info
Browse files Browse the repository at this point in the history
  • Loading branch information
dlakaplan committed Dec 2, 2024
1 parent e086157 commit 333df4c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Print OS, machine info
shell: bash -el {0}
run: |
python -c "import os; print(f'os {os.uname()}')"
python -c "import platform; print(f'processor {platform.processor}')"
- name: Print Python, pip, and tox versions
shell: bash -el {0}
run: |
Expand Down

0 comments on commit 333df4c

Please sign in to comment.