Skip to content

Adjust path relative to root #4

Adjust path relative to root

Adjust path relative to root #4

Workflow file for this run

name: Xcode - Build and Analyze
on:
push:
branches: [ "github-actions" ]
jobs:
build:
name: Build and analyze default scheme using xcodebuild command
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
env:
scheme: ${{ 'default' }}
run: |
xcodebuild -project "Escrow Buddy/Escrow Buddy.xcodeproj" clean build analyze -configuration Release | xcpretty && exit ${PIPESTATUS[0]}