Skip to content

Commit 5a66414

Browse files
ci: Build for iOS.
1 parent 0abed0f commit 5a66414

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,18 @@ jobs:
5151

5252
- name: cargo test
5353
run: cargo test --workspace
54+
55+
build-ios:
56+
runs-on: macos-13
57+
name: cargo build - ios
58+
steps:
59+
- uses: actions/checkout@v4
60+
61+
- name: install stable toolchain
62+
uses: dtolnay/rust-toolchain@master
63+
with:
64+
toolchain: stable
65+
target: aarch64-apple-ios
66+
67+
- name: cargo build
68+
run: cargo build --target aarch64-apple-ios --all-targets --workspace -- -D warnings

0 commit comments

Comments
 (0)