Restore and extend feature index generation with method support #2017
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-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check | |
run: cargo doc --no-deps -p windows | |
windows-sys: | |
name: windows-sys | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check | |
run: cargo doc --no-deps -p windows-sys | |
other-crates: | |
runs-on: windows-2022 | |
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 |