Skip to content

Merge pull request #26 from Web3Auth/fix_session_expired #68

Merge pull request #26 from Web3Auth/fix_session_expired

Merge pull request #26 from Web3Auth/fix_session_expired #68

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Checkout the code, and run mxcl's xcodebuild action to run the unit tests
jobs:
test:
runs-on: macos-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: package
run: xcodebuild test -scheme SingleFactorAuth -destination "platform=iOS Simulator,OS=17.5,name=iPhone 14" COMPILER_INDEX_STORE_ENABLE=NO