Skip to content

Commit ef0d0ff

Browse files
committed
CI: Add abi3audit
1 parent ddc6006 commit ef0d0ff

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ jobs:
160160
- name: Build an abi3 wheel
161161
shell: bash
162162
run: |
163+
set -e
163164
cd examples/rust_with_cffi/
164165
python --version
165166
pip install -U wheel
@@ -179,13 +180,22 @@ jobs:
179180
- name: Install abi3 wheel and run tests
180181
shell: bash
181182
run: |
183+
set -e
182184
cd examples/
183185
pip install -U wheel
184186
python --version
185187
pip install rust_with_cffi/dist/rust_with_cffi*.whl
186188
python -c "from rust_with_cffi import rust; assert rust.rust_func() == 14"
187189
python -c "from rust_with_cffi.cffi import lib; assert lib.cffi_func() == 15"
188190
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+
189199
test-crossenv:
190200
runs-on: ubuntu-latest
191201
strategy:

0 commit comments

Comments
 (0)