File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,14 @@ jobs:
3838 - uses : actions/setup-python@v5
3939 with :
4040 python-version : 3.x
41- - name : Run tests
42- uses : ./.github/workflows/_test.yml
43- with :
44- platform : ${{ matrix.platform.runner }}
4541 - name : Build wheels
4642 uses : PyO3/maturin-action@v1
4743 with :
4844 target : ${{ matrix.platform.target }}
4945 args : --release --out dist --find-interpreter
5046 sccache : ' true'
5147 manylinux : auto
52- container : ${{ matrix.platform.container }}
48+ container : ${{ matrix.platform.container }}
49+ test :
50+ name : Run test
51+ uses : ./.github/workflows/_test.yml
Original file line number Diff line number Diff line change @@ -2,17 +2,14 @@ name: Run Tests
22
33on :
44 workflow_call :
5- inputs :
6- platform :
7- required : true
8- type : string
95
106jobs :
117 rust :
128 strategy :
139 matrix :
1410 python-version : [3.11, 3.13]
15- runs-on : ${{ inputs.platform }}
11+ platform : [ubuntu-latest, macos-latest]
12+ runs-on : ${{ matrix.platform }}
1613 steps :
1714 - uses : actions/checkout@v4
1815
You can’t perform that action at this time.
0 commit comments