Ensure that windows-bindgen properly processes certain methods and functions that have an unsupported trailing array parameter. #1819
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gen | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
push: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
branches: | |
- master | |
jobs: | |
check: | |
name: tool_${{ matrix.tool }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
tool: [bindgen, bindings, yml, license, standalone] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update toolchain | |
run: rustup update --no-self-update stable && rustup default stable | |
- name: Run | |
run: cargo run -p tool_${{ matrix.tool }} --release | |
- name: Check | |
shell: bash | |
run: | | |
git add -N . | |
git diff --exit-code || (echo '::error::Generated `tool_${{ matrix.tool }}` is out-of-date. Please run `cargo run -p tool_${{ matrix.tool }}`'; exit 1) |