We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798a98a commit 5ad62f9Copy full SHA for 5ad62f9
.github/workflows/ci.yaml
@@ -112,9 +112,25 @@ jobs:
112
path: dist/
113
if-no-files-found: error
114
115
+ build-sdist:
116
+ name: Build source distribution packages
117
+ runs-on: ubuntu-24.04
118
+ steps:
119
+ - uses: actions/checkout@v5
120
+ - name: Build sdist
121
+ uses: PyO3/maturin-action@v1
122
+ with:
123
+ command: sdist
124
+ args: --out dist
125
+ - name: Upload sdist
126
+ uses: actions/upload-artifact@v4
127
128
+ name: dist-packages-sdist
129
+ path: dist
130
+
131
test-installation:
132
name: Test package installation
- needs: ["build"]
133
+ needs: ["build", "build-sdist"]
134
strategy:
135
fail-fast: false
136
matrix:
0 commit comments