From 3111b2574ca283b0d9b600815513e28e728fec25 Mon Sep 17 00:00:00 2001 From: Elias Bonnici Date: Tue, 2 Jul 2024 14:18:52 +0200 Subject: [PATCH] Update GitHub runner architectures --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59c208e..5cb51e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,12 +10,16 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9'] - architecture: [x86, x64] + architecture: [x86, x64, arm64] exclude: - os: ubuntu-latest architecture: x86 - os: macos-latest architecture: x86 + - os: macos-latest + architecture: x64 + - os: windows-latest + architecture: arm64 - os: windows-latest python: pypy3.9 - os: macos-latest