generated from StanfordBDHG/TemplateApplication
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f14b259
Showing
40 changed files
with
2,332 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# This source file is part of the StanfordBDHG Template Application project | ||
# | ||
# SPDX-FileCopyrightText: 2023 Stanford University | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# | ||
|
||
name: Beta Deployment | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
buildandtest: | ||
name: Build and Test | ||
uses: ./.github/workflows/build-and-test.yml | ||
permissions: | ||
contents: read | ||
actions: read | ||
security-events: write | ||
secrets: inherit | ||
iosapptestflightdeployment: | ||
name: iOS App TestFlight Deployment | ||
needs: buildandtest | ||
uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 | ||
concurrency: | ||
group: appstoreconnect | ||
permissions: | ||
contents: read | ||
with: | ||
setupsigning: true | ||
fastlanelane: beta | ||
environment: beta | ||
secrets: inherit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# | ||
# This source file is part of the StanfordBDHG Template Application project | ||
# | ||
# SPDX-FileCopyrightText: 2023 Stanford University | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# | ||
|
||
name: Build and Test | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
jobs: | ||
reuse_action: | ||
name: REUSE Compliance Check | ||
uses: StanfordBDHG/.github/.github/workflows/reuse.yml@v2 | ||
swiftlint: | ||
name: SwiftLint | ||
uses: StanfordBDHG/.github/.github/workflows/swiftlint.yml@v2 | ||
periphery: | ||
name: Periphery | ||
uses: StanfordBDHG/.github/.github/workflows/periphery.yml@v2 | ||
permissions: | ||
contents: read | ||
codeql: | ||
name: CodeQL | ||
uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 | ||
with: | ||
codeql: true | ||
fastlanelane: codeql | ||
permissions: | ||
security-events: write | ||
actions: read | ||
buildandtest: | ||
name: Build and Test | ||
uses: StanfordBDHG/.github/.github/workflows/xcodebuild-or-fastlane.yml@v2 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: [iphone, ipad, apple_watch, apple_tv, vision_pro] | ||
with: | ||
# We use the self-hosted runners as the main GitHub Action runners do not have the necessary performance. | ||
# Remove the `runsonlabels: '["macOS", "self-hosted"]'` lines if you do not administer your own GitHub Runners. | ||
runsonlabels: '["macOS", "self-hosted"]' | ||
fastlanelane: test_${{ matrix.platform }} | ||
artifactname: ${{ matrix.platform }}.xcresult | ||
uploadcoveragereport: | ||
name: Upload Coverage Report | ||
needs: [buildandtest] | ||
uses: StanfordBDHG/.github/.github/workflows/create-and-upload-coverage-report.yml@v2 | ||
with: | ||
coveragereports: iphone.xcresult ipad.xcresult apple_watch.xcresult apple_tv.xcresult vision_pro.xcresult | ||
secrets: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# | ||
# This source file is part of the StanfordBDHG Template Application project | ||
# | ||
# SPDX-FileCopyrightText: 2023 Stanford University | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# | ||
|
||
# Swift Package Manager | ||
*.xcodeproj | ||
.swiftpm | ||
.derivedData | ||
.build | ||
!TemplateApplication.xcodeproj | ||
|
||
# IDE related folders | ||
.idea | ||
|
||
# Xcode | ||
xcuserdata/ | ||
*.ipa | ||
*.dSYM | ||
*.dSYM.zip | ||
|
||
# Other files | ||
.DS_Store | ||
.env | ||
|
||
# Tests | ||
report.junit | ||
report.html | ||
*.xcresult |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# | ||
# This source file is part of the StanfordBDHG Template Application project | ||
# | ||
# SPDX-FileCopyrightText: 2023 Stanford University | ||
# | ||
# SPDX-License-Identifier: MIT | ||
# | ||
|
||
project: TemplateApplication.xcodeproj | ||
schemes: | ||
- TemplateApplication | ||
targets: | ||
- TemplateApplication | ||
- TemplateApplicationTests | ||
- TemplateApplicationUITests | ||
- TemplateWatchApplication |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
|
||
Files: TemplateApplication.xcodeproj/* | ||
Copyright: 2024 Stanford University and the project authors (see CONTRIBUTORS.md) | ||
License: MIT | ||
Comment: All Xcode Project Configuration Files are part of the StanfordBDHG Template Application project. |
Oops, something went wrong.