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 e7723a4 commit 1572226Copy full SHA for 1572226
.github/workflows/reusable-smoke-test.yml
@@ -96,6 +96,14 @@ jobs:
96
readme = "README.md"
97
- name: Build the stub package sdist and wheel distributions
98
run: python3 -m build
99
+ - name: Create the Rust package directory
100
+ run: mkdir -pv rust-example
101
+ - name: Initialize a Rust project
102
+ run: cargo init
103
+ working-directory: rust-example
104
+ - name: Build a Rust project
105
+ run: pipx run maturin build --release --out ../dist/
106
107
- name: Register the stub package in devpi
108
run: twine register dist/*.tar.gz
109
env:
0 commit comments