Simplify CI setup (#30) #133
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: ios | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: iOS | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install target | |
| run: rustup target add aarch64-apple-ios | |
| - name: Build | |
| run: cargo build --target aarch64-apple-ios |