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: docs | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
push: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
branches: | |
- master | |
jobs: | |
windows: | |
name: windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check | |
run: cargo doc --no-deps -p windows | |
windows-sys: | |
name: windows-sys | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check | |
run: cargo doc --no-deps -p windows-sys | |
other-crates: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check | |
run: > | |
cargo doc --no-deps | |
-p windows-bindgen | |
-p windows-core | |
-p cppwinrt | |
-p windows-implement | |
-p windows-interface | |
-p windows-registry | |
-p windows-result | |
-p windows-strings | |
-p windows-targets | |
-p windows-version |