Skip to content

Implement Phase 1: XCResult parser library #1

Implement Phase 1: XCResult parser library

Implement Phase 1: XCResult parser library #1

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Set up Xcode 26
run: sudo xcode-select -s /Applications/Xcode.app
- name: Run Unit Tests
run: swift test
- name: Generate Test xcresult
run: |
cd TestFixtures/SampleProject
xcodebuild test \
-scheme SampleProject \
-destination 'platform=iOS Simulator,name=iPhone 16 Pro' \
-resultBundlePath ../../tmp/integration-test.xcresult \
|| true # Allow test failures
- name: Run Integration Tests
run: swift test --filter IntegrationTests
env:
XCRESULT_PATH: tmp/integration-test.xcresult