diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb97045..ff044b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,11 @@ jobs: with: command: build args: --features webview --example webview_custom_protocol + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + target: x86_64-apple-ios # Since it's all Objective-C message passing under the hood, we're # really just looking for whether we've broken the iOS build. It is likely # that more robust tests/checking infrastructure should exist for this side @@ -68,8 +73,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: build - target: x86_64-apple-ios - args: --example ios-beta --no-default-features --features uikit,autolayout + args: --target x86_64-apple-ios --example ios-beta --no-default-features --features uikit,autolayout ios: name: Check that iOS tests pass via dinghy.