ci: add bindgen workflow
This commit is contained in:
parent
350fff24bf
commit
ab306f543f
1 changed files with 24 additions and 0 deletions
24
.github/workflows/bindgen.yml
vendored
Normal file
24
.github/workflows/bindgen.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: Check Bindgen Output
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
check-bindgen:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up stable Rust toolchain
|
||||
uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Generate bindings
|
||||
run: cargo xtask generate-bindings
|
||||
|
||||
- name: Check if the bindgen output changed
|
||||
run: git diff --exit-code lib/binding_rust/bindings.rs
|
||||
Loading…
Add table
Add a link
Reference in a new issue