Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
713 B
YAML
30 lines
713 B
YAML
name: Check Bindgen Output
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- lib/include/tree_sitter/api.h
|
|
- lib/binding_rust/bindings.rs
|
|
push:
|
|
branches: [master]
|
|
paths:
|
|
- lib/include/tree_sitter/api.h
|
|
- lib/binding_rust/bindings.rs
|
|
|
|
jobs:
|
|
check-bindgen:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- 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
|