feat: add linker args for VHF lib to wdk-build #4285
Workflow file for this run
This file contains hidden or 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: Code Formatting Check | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'gh-readonly-queue/**' | |
| pull_request: | |
| merge_group: | |
| schedule: # Trigger a job on default branch at 4AM PST everyday | |
| - cron: 0 11 * * * | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| cargo-fmt: | |
| name: .rs Formatting Check | |
| runs-on: windows-2025 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Install Rust Toolchain (Nightly) | |
| uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rustfmt | |
| - name: Run Cargo Format | |
| run: cargo +nightly fmt --all -- --check | |
| taplo-fmt: | |
| name: .toml Formatting Check | |
| runs-on: windows-2025 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Install Rust Toolchain (Stable) | |
| uses: dtolnay/rust-toolchain@stable | |
| # Using cache-cargo-install-action to cache the compiled binary. | |
| # Once taplo ships a release with field-level `keys` matching, this can | |
| # be simplified back to install-action with a normal version pin. | |
| - name: Install taplo-cli from pinned revision b673b44d | |
| uses: taiki-e/cache-cargo-install-action@v3 | |
| with: | |
| tool: taplo-cli | |
| git: https://github.com/tamasfe/taplo | |
| rev: b673b44d | |
| locked: true | |
| env: | |
| RUSTFLAGS: "" | |
| - run: taplo fmt --check --diff | |
| name: Check TOML files formatting and dependency sorting |