Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 871ce4a

Browse files
committed
fixes
1 parent c5ce896 commit 871ce4a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/pull.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -739,10 +739,19 @@ jobs:
739739
runner: [macos-m1-stable ]
740740
runs-on: ${{matrix.runner}}
741741
steps:
742+
- name: Checkout repo
743+
uses: actions/checkout@v2
742744
- name: Setup Python
743745
uses: actions/setup-python@v2
744746
with:
745747
python-version: 3.10.11
748+
- name: Print machine info
749+
run: |
750+
uname -a
751+
if [ $(uname -s) == Darwin ]; then
752+
sysctl machdep.cpu.brand_string
753+
sysctl machdep.cpu.core_count
754+
fi
746755
- name: Run test
747756
run: |
748757
export PYTHON_VERSION="3.10"

0 commit comments

Comments
 (0)