Skip to content

[Chore] update uitesting env #104

[Chore] update uitesting env

[Chore] update uitesting env #104

Workflow file for this run

name: Build & Test
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
jobs:
build:
runs-on: macos-13-arm
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0.1'
- name: macOS build and test
run: |
set -o pipefail
xcodebuild test -workspace ZMarkupParser.xcworkspace -testPlan UnitTest -scheme ZMarkupParser -destination 'platform=macOS' build test | xcpretty
- name: iOS build and test
run: |
set -o pipefail
xcodebuild test -workspace ZMarkupParser.xcworkspace -testPlan ZMarkupParser -scheme ZMarkupParser -enableCodeCoverage YES -resultBundlePath './scripts/TestResult.xcresult' -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.2' build test | xcpretty
- name: Codecov
uses: codecov/[email protected]
with:
xcode: true
xcode_archive_path: './scripts/TestResult.xcresult'