Refactor to have less dependencies upon Artwork (#350) #757
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: push-and-prs-on-main | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Switch to Xcode 16.0 | |
run: sudo xcode-select -s "/Applications/Xcode_16.0.app" | |
- name: Build | |
run: xcodebuild -scheme itunes_missing_artwork -destination "platform=macOS" -destination "platform=iOS Simulator,name=iPhone 14" | |
# - name: Show Destinations | |
# run: xcodebuild -scheme itunes_missing_artwork -showdestinations | |
# - name: Build (swift package manager macos default) | |
# run: swift build -v |