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

Commit

Permalink
ci: analyse with xcodebuild
Browse files Browse the repository at this point in the history
Signed-off-by: 82Flex <[email protected]>
  • Loading branch information
Lessica committed Jan 20, 2024
1 parent acc2b47 commit bb9b01c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-analyse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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: 15.1

- name: Checkout
uses: actions/checkout@v3

- name: Build
run: |
xcodebuild clean build analyze -scheme TrollSpeed -project TrollSpeed.xcodeproj CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]}
Empty file.

0 comments on commit bb9b01c

Please sign in to comment.