Remove references to SwiftProjectTemplate from workflow action #18
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
# Build and Test the Xcode App | |
# This tests the `AppPackage` as well as the `App` Xcode project. | |
name: Build and Test (Xcode) | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-test-xcode: | |
strategy: | |
matrix: | |
xcode-version: | |
- "16" | |
xcode-configuration: | |
- name: iOS Simulator | |
destination: "platform=iOS Simulator,name=iPhone 16" | |
- name: macOS | |
destination: "platform=macOS" | |
build-configuration: | |
- "Debug" | |
- "Release" | |
runs-on: macos-15 | |
name: Build and Test (${{ matrix.xcode-configuration.name }}, ${{ matrix.build-configuration }}) | |
env: | |
# When we specialize this template, we don't have permissions to change workflows, so we cant reference the name of the project here. | |
project-name: ${{ github.repository.name }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer | |
- name: Build | |
run: | | |
xcrun xcodebuild clean build \ | |
-workspace ${{ env.project-name }}.xcworkspace \ | |
-scheme ${{ env.project-name }}App \ | |
-derivedDataPath ".build/Xcode.noindex/DerivedData" \ | |
-configuration "${{ matrix.build-configuration }}" \ | |
-destination "${{ matrix.xcode-configuration.destination }}" | |
- name: SwiftPM Tests | |
if: matrix.build-configuration == 'Debug' | |
run: | | |
xcrun xcodebuild test \ | |
-workspace ${{ env.project-name }}.xcworkspace \ | |
-scheme ${{ env.project-name }}App \ | |
-derivedDataPath ".build/Xcode.noindex/DerivedData" \ | |
-configuration "${{ matrix.build-configuration }}" \ | |
-destination "${{ matrix.xcode-configuration.destination }}" | |
- name: UI Tests | |
run: | | |
xcrun xcodebuild test \ | |
-workspace ${{ env.project-name }}.xcworkspace \ | |
-scheme ${{ env.project-name }}App \ | |
-derivedDataPath ".build/Xcode.noindex/DerivedData" \ | |
-configuration "${{ matrix.build-configuration }}" \ | |
-destination "${{ matrix.xcode-configuration.destination }}" | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Test Results (${{ matrix.xcode-configuration.name }}, ${{ matrix.build-configuration }}) | |
path: .build/Xcode.noindex/DerivedData/Logs/Test | |
- name: Check that repository is clean | |
run: | |
git diff --exit-code |