Skip to content

Commit b3dfc75

Browse files
committed
fix job
1 parent 3027d52 commit b3dfc75

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
build_stable_abi_wheel:
3030
name: build-abi3-${{ matrix.platform }}
3131
runs-on: ${{ matrix.platform }}
32-
matrix:
33-
platform: [ubuntu-latest, windows-latest, macos-latest]
3432
strategy:
3533
fail-fast: false
34+
matrix:
35+
platform: [ubuntu-latest, windows-latest, macos-latest]
3636
steps:
3737
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.1.2
3838
- uses: actions/setup-python@2e3e4b15a884dc73a63f962bff250a855150a234 # v5.5.0
@@ -42,20 +42,21 @@ jobs:
4242
- name: Build package
4343
run: |
4444
pip install build
45-
python -m build -wnx -Csetup-args=-Dpython.allow_limited_api=true
45+
python -m build --wheel -Csetup-args="-Dpython.allow_limited_api=true"
4646
4747
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
4848
with:
4949
path: ./dist/*.whl
5050
name: ${{ matrix.platform }}-abi3-wheel
5151

5252
test_stable_abi_wheel:
53+
needs: build_stable_abi_wheel
5354
name: test-abi3-${{ matrix.platform }}
5455
runs-on: ${{ matrix.platform }}
55-
matrix:
56-
platform: [ubuntu-latest, windows-latest, macos-latest]
5756
strategy:
5857
fail-fast: false
58+
matrix:
59+
platform: [ubuntu-latest, windows-latest, macos-latest]
5960
steps:
6061
- uses: actions/setup-python@2e3e4b15a884dc73a63f962bff250a855150a234 # v5.5.0
6162
with:

0 commit comments

Comments
 (0)