Update onboarding and consent #75
Workflow file for this run
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
# | |
# This source file is part of the StrokeCog based on the Stanford Spezi Template Application project | |
# | |
# SPDX-FileCopyrightText: 2023 Stanford University | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: Build and Test | |
on: | |
pull_request: | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
swiftlint: | |
name: SwiftLint | |
uses: StanfordBDHG/.github/.github/workflows/swiftlint.yml@v2 | |
permissions: | |
contents: read | |
markdownlinkcheck: | |
name: Markdown Link Check | |
uses: StanfordBDHG/.github/.github/workflows/markdown-link-check.yml@v2 | |
permissions: | |
contents: read | |
buildandtest: | |
name: Build and Test | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add Mapbox credentials | |
uses: extractions/netrc@v1 | |
with: | |
machine: api.mapbox.com | |
username: mapbox | |
password: ${{ secrets.MAPBOX_TOKEN }} | |
- name: Set up Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.3' | |
- name: Build Xcode project | |
run: xcodebuild -project StrokeCog.xcodeproj -scheme StrokeCog -sdk iphonesimulator -configuration Debug build | |
- name: Run tests | |
run: xcodebuild test -project StrokeCog.xcodeproj -scheme StrokeCog -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.2' |