fix: move cargo-wdk output to stderr (#599) #1010
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
| 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 * * * | |
| name: Typos | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| typos: | |
| name: Spell check | |
| runs-on: windows-2025 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| # We explicitly install typos instead the typos GitHub Action due to: | |
| # https://github.com/crate-ci/typos/issues/1191 | |
| - name: Install typos (taiki-e/install-action) | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: typos | |
| - name: Run typos (check) | |
| run: typos |