We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0abed0f commit 86232a8Copy full SHA for 86232a8
.github/workflows/ci.yml
@@ -51,3 +51,20 @@ jobs:
51
52
- name: cargo test
53
run: cargo test --workspace
54
+
55
+ build-ios:
56
+ runs-on: macos-13
57
+ name: cargo build - ios
58
+ env:
59
+ RUSTFLAGS: -D warnings
60
+ steps:
61
+ - uses: actions/checkout@v4
62
63
+ - name: install stable toolchain
64
+ uses: dtolnay/rust-toolchain@master
65
+ with:
66
+ toolchain: stable
67
+ target: aarch64-apple-ios
68
69
+ - name: cargo build
70
+ run: cargo build --target aarch64-apple-ios --all-targets --workspace
0 commit comments