Skip to content

Commit

Permalink
ci: include all architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Nov 28, 2023
1 parent 8852212 commit 3414269
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/macos-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/server-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3414269

Please sign in to comment.