Skip to content

iOS SDK Build

iOS SDK Build #3

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: iOS SDK Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Install Dependencies
run: |
swift package resolve
swift package generate-xcodeproj
- name: Build and Test
run: |
xcodebuild -scheme metamask-ios-sdk -destination 'platform=iOS Simulator,name=iPhone 15' build test