Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

ci

ci #101

Workflow file for this run

name: Xcode - Build and Analyze
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build and analyse using xcodebuild command
runs-on: macos-13
steps:
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 14.3.1
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
xcodebuild clean build analyze -scheme TrollSpeed.Sim -project TrollSpeed.xcodeproj | xcpretty && exit ${PIPESTATUS[0]}