feat(swift-bridge): add SCBridgeError enum and documentation #304
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 | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # Apple Silicon (ARM64) | |
| - os: macos-14 | |
| name: macOS 14 (Sonoma) ARM64 | |
| - os: macos-15 | |
| name: macOS 15 (Sequoia) ARM64 | |
| - os: macos-26 | |
| name: macOS 26 ARM64 | |
| # Intel (x86_64) | |
| - os: macos-13 | |
| name: macOS 13 (Ventura) Intel | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.name }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update rust | |
| run: rustup update | |
| - name: Show system info | |
| run: | | |
| uname -a | |
| sw_vers | |
| rustc --version | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Build with all features | |
| run: cargo build --verbose --all-features | |
| - name: Run Tests | |
| run: cargo test --verbose | |
| - name: Run Clippy | |
| run: cargo clippy -- -D warnings |