Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ jobs:
cargo update
cargo build

c-header:
name: Check generated C header
rust-bindings:
name: Check generated Rust bindings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -180,9 +180,9 @@ jobs:
run: sudo apt-get install libelf-dev
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --features bindgen-source
- name: Check that C header is up-to-date
- name: Check that generated Rust bindings are up-to-date
run: git diff --exit-code ||
(echo "!!!! CHECKED IN C HEADER IS OUTDATED !!!!" && false)
(echo "!!!! CHECKED IN BINDINGS ARE OUTDATED !!!!" && false)

clippy:
name: Lint with clippy
Expand Down