Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,18 @@ on:
# Checkout the code, and run mxcl's xcodebuild action to run the unit tests

jobs:
test:
runs-on: macos-latest
build:
runs-on: macOS-latest
strategy:
matrix:
platform:
- iOS
steps:
- name: checkout
uses: actions/checkout@v3
- name: xcode
uses: maxim-lobanov/setup-xcode@v1
- uses: actions/checkout@v4
- uses: mxcl/xcodebuild@v3.0.0
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
platform: ${{ matrix.platform }}
action: test
scheme: SingleFactorAuth
code-coverage: true
upload-logs: always