diff --git a/.github/workflows/macos-pytest.yml b/.github/workflows/macos-pytest.yml index deba5aff..5497334c 100644 --- a/.github/workflows/macos-pytest.yml +++ b/.github/workflows/macos-pytest.yml @@ -18,7 +18,11 @@ jobs: strategy: matrix: python-version: [ 3.8, 3.9, "3.10", 3.11 ] - os: [ macos-latest ] + include: + - os: macos-latest + arch: arm64 + - os: macos-latest + arch: x86_64 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/server-app.yml b/.github/workflows/server-app.yml index b3a0941c..1c329fe5 100644 --- a/.github/workflows/server-app.yml +++ b/.github/workflows/server-app.yml @@ -14,7 +14,17 @@ jobs: strategy: matrix: - os: [ ubuntu-latest, macos-latest ] + include: + - os: macos-latest + arch: arm64 + - os: macos-latest + arch: x86_64 + - os: ubuntu-latest + arch: aarch64 + - os: ubuntu-latest + arch: i686 + - os: ubuntu-latest + arch: x86_64 steps: - uses: actions/checkout@v3