chore(deps): bump rust-toolchain from 1.96.1 to 1.97.0 #75
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: rust-macos | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.rs" | |
| - "**/Cargo.toml" | |
| - "**/Cargo.lock" | |
| - "rust-toolchain.toml" | |
| - "native/**" | |
| - ".cargo/config.toml" | |
| - ".github/workflows/rust-macos.yaml" | |
| - "flake.lock" | |
| - "flake.nix" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-rust-macos | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| actions: write | |
| id-token: write | |
| jobs: | |
| test: | |
| # WispAudioKit uses APIs that only exist on macOS 26 | |
| # (Speech.SpeechAnalyzer, Core Audio Process Tap) so we need a Tahoe | |
| # runner. `macos-26` is the GitHub-hosted runner image for it. | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Select Xcode | |
| run: | | |
| sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | |
| xcrun swift --version | |
| xcrun --find metal | |
| - uses: ./.github/actions/setup-nix | |
| - uses: ./.github/actions/setup-rust-cache | |
| # Builds the WispAudioKit Swift static library through build.rs and | |
| # exercises the FFI round-trip via the smoke test in wisp-audiokit. | |
| - run: nix develop .#ci --quiet --command cargo test -p wisp-audiokit |