Skip to content

tweak exec process launching #2

tweak exec process launching

tweak exec process launching #2

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
name: Build and analyze using xcodebuild
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select Xcode version 15
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15'
- name: Build
run: |
xcodebuild clean build analyze -project 'Nautik Helper.xcodeproj' -scheme 'Nautik Helper' | xcpretty && exit ${PIPESTATUS[0]}