Update windows-bindgen
to support unsafe_op_in_unsafe_fn
#544
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: no-default-features | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
push: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- 'web/**' | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
include: | |
- version: nightly | |
target: x86_64-pc-windows-msvc | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update toolchain | |
run: rustup update --no-self-update ${{ matrix.version }} && rustup default ${{ matrix.version }}-${{ matrix.target }} | |
- name: Add toolchain target | |
run: rustup target add ${{ matrix.target }} | |
- name: Fix environment | |
uses: ./.github/actions/fix-environment | |
- name: Check cppwinrt | |
run: cargo check -p cppwinrt --no-default-features | |
- name: Check helpers | |
run: cargo check -p helpers --no-default-features | |
- name: Check windows | |
run: cargo check -p windows --no-default-features | |
- name: Check windows-bindgen | |
run: cargo check -p windows-bindgen --no-default-features | |
- name: Check windows-core | |
run: cargo check -p windows-core --no-default-features | |
- name: Check windows-implement | |
run: cargo check -p windows-implement --no-default-features | |
- name: Check windows-interface | |
run: cargo check -p windows-interface --no-default-features | |
- name: Check windows-registry | |
run: cargo check -p windows-registry --no-default-features | |
- name: Check windows-result | |
run: cargo check -p windows-result --no-default-features | |
- name: Check windows-strings | |
run: cargo check -p windows-strings --no-default-features | |
- name: Check windows-sys | |
run: cargo check -p windows-sys --no-default-features | |
- name: Check windows-targets | |
run: cargo check -p windows-targets --no-default-features | |
- name: Check windows-version | |
run: cargo check -p windows-version --no-default-features |