Skip to content

Commit 65519c7

Browse files
committed
Add arch check
1 parent cc01062 commit 65519c7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,15 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
os: [ubuntu-latest, macos-15-arm64, macos-15-intel]
37+
os: [ubuntu-latest, macos-latest, macos-15-intel]
3838
python-version: ["3.11", "3.12", "3.13", "3.14"]
3939
runs-on: ${{ matrix.os }}
4040
steps:
4141
- uses: actions/checkout@v4
42+
43+
- name: Chech arch
44+
if: runner.os == 'macOS'
45+
run: uname -m
4246

4347
- name: Install Redis (Linux)
4448
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)