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 09903b5Copy full SHA for 09903b5
.github/workflows/ci.yaml
@@ -112,9 +112,24 @@ jobs:
112
path: dist/
113
if-no-files-found: error
114
115
+ build-sdist:
116
+ name: Build source distribution packages
117
+ steps:
118
+ - uses: actions/checkout@v5
119
+ - name: Build sdist
120
+ uses: PyO3/maturin-action@v1
121
+ with:
122
+ command: sdist
123
+ args: --out dist
124
+ - name: Upload sdist
125
+ uses: actions/upload-artifact@v4
126
127
+ name: dist-packages-sdist
128
+ path: dist
129
+
130
test-installation:
131
name: Test package installation
- needs: ["build"]
132
+ needs: ["build", "build-sdist"]
133
strategy:
134
fail-fast: false
135
matrix:
0 commit comments