File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ jobs:
160
160
- name : Build an abi3 wheel
161
161
shell : bash
162
162
run : |
163
+ set -e
163
164
cd examples/rust_with_cffi/
164
165
python --version
165
166
pip install -U wheel
@@ -179,13 +180,22 @@ jobs:
179
180
- name : Install abi3 wheel and run tests
180
181
shell : bash
181
182
run : |
183
+ set -e
182
184
cd examples/
183
185
pip install -U wheel
184
186
python --version
185
187
pip install rust_with_cffi/dist/rust_with_cffi*.whl
186
188
python -c "from rust_with_cffi import rust; assert rust.rust_func() == 14"
187
189
python -c "from rust_with_cffi.cffi import lib; assert lib.cffi_func() == 15"
188
190
191
+ - name : Run abi3audit
192
+ shell : bash
193
+ run : |
194
+ set -e
195
+ pip install abi3audit
196
+ cd examples/
197
+ abi3audit rust_with_cffi/dist/rust_with_cffi*.whl
198
+
189
199
test-crossenv :
190
200
runs-on : ubuntu-latest
191
201
strategy :
You can’t perform that action at this time.
0 commit comments