mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:36:22 -04:00
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [vmactions/omnios-vm](https://github.com/vmactions/omnios-vm). Updates `actions/checkout` from 7.0.0 to 7.0.1 - [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/v7.0.0...v7.0.1) Updates `actions/setup-node` from 6.4.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6.4.0...v7.0.0) Updates `vmactions/omnios-vm` from 1.3.3 to 1.3.4 - [Release notes](https://github.com/vmactions/omnios-vm/releases) - [Commits](https://github.com/vmactions/omnios-vm/compare/v1.3.3...v1.3.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: vmactions/omnios-vm dependency-version: 1.3.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
717 B
YAML
31 lines
717 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@v7.0.1
|
|
|
|
- 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
|