Clean up docc broken link + tests #408
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
name: Build watchOS | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 16 15 * *' | |
jobs: | |
build: | |
name: Build watchOS | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build watchOS framework | |
run: | | |
set -o pipefail && xcodebuild -project ID3TagEditor.xcodeproj -scheme "ID3TagEditor watchOS" clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=watchOS Simulator,name=Apple Watch SE (40mm) (2nd generation),OS=11.0" -skipPackagePluginValidation | xcpretty | |
- name: Build watchOS Demo | |
run: | | |
set -o pipefail && xcodebuild -project Demo/Demo.xcodeproj -scheme "Demo watchOS" clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -skipPackagePluginValidation | xcpretty |