Merge pull request #11 from FeatureProbe/gangb-tech-patch-1 #131
This file contains 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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: raftario/setup-rust-action@v1 | |
with: | |
rust-channel: nightly | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '13.2.1' | |
- name: which swift | |
run: which swift | |
- name: Run tests | |
run: cargo test --package fp-mobile-uniffi uniffi_foreign_language_testcase_test_swift | |
- name: Run build | |
run: make build_ios |