Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Update README.md

Update README.md #94

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 -project TrollSpeed.xcodeproj CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]}