Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlKCarlK committed Jul 3, 2024
1 parent 6e8462a commit 8424639
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,26 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- {os: macos-13, arch: x86_64, build: "*"}
- {os: macos-14, arch: arm64, build: "*"}
- {os: windows-2022, arch: AMD64, build: "*"}
- {os: ubuntu-latest, arch: x86_64, build: "*manylinux2014*"}
- {os: ubuntu-latest, arch: aarch64, build: "*manylinux2014*"}
- {os: ubuntu-latest, arch: x86_64, build: "*musllinux_1_1*"}
os: [macos-13, macos-14, windows-2022, ubuntu-latest]
python-version: [3.9, "3.10", "3.11", "3.12"]
steps:
arch: [x86_64, arm64]
include:
- os: macos-13
arch: x86_64
- os: macos-14
arch: arm64
- os: windows-2022
arch: x86_64
- os: ubuntu-latest
arch: x86_64
build: "manylinux2014"
- os: ubuntu-latest
arch: arm64
build: "manylinux2014"
- os: ubuntu-latest
arch: x86_64

steps:
- name: Checkout
uses: actions/checkout@v3

Expand Down

0 comments on commit 8424639

Please sign in to comment.