fix(chore): Cleaned AnonAadhaarViewControlle + added textView #79
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: Rust | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install circom | |
run: | | |
git clone https://github.com/iden3/circom.git | |
cd circom | |
cargo build --release | |
cargo install --path circom | |
- name: Prepare CI | |
run: ./scripts/prepare_ci.sh | |
- name: Build | |
run: ./scripts/build_ios.sh x86_64 debug | |
- name: Run core tests | |
run: cd mopro-core/ && cargo test --verbose | |
- name: Run ffi tests | |
run: cd mopro-ffi/ && cargo test --verbose | |
- name: Run bindings tests | |
run: cd mopro-ffi/ && cargo test --test test_generated_bindings | |
- name: Run ios tests | |
run: | | |
cd mopro-ios/MoproKit/Example | |
xcodebuild test -scheme MoproKit-Example -workspace MoproKit.xcworkspace -destination "platform=iOS Simulator,OS=16.2,name=iPhone 14 Pro" | |