Skip to content

Commit

Permalink
Add Xcode workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckhoupt committed Oct 22, 2024
1 parent 33eab5f commit 7ef9511
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/objective-c-xcode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Xcode - Build and Analyze

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: Build and analyse default scheme using xcodebuild command
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: |
touch GoogleService-Info.plist
xcodebuild clean build -project Bartender.xcodeproj -scheme Bartender ONLY_ACTIVE_ARCH=YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" CODE_SIGNING_ALLOWED="NO"

0 comments on commit 7ef9511

Please sign in to comment.