Skip to content

Commit

Permalink
Add basic build and test CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
lechuckcaptain committed Sep 25, 2023
1 parent 88043d1 commit 3c51396
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Xcode - Build and Test

on: [push]

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

jobs:
build:
name: 'Build and test: Debug'
runs-on: macos-13

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Selected Xcode version
run: |
xcode-select -p
- name: Build and test
run: |
xcodebuild clean build analyze test -project ControlRoom.xcodeproj -scheme 'Debug - ControlRoom' -destination 'platform=macOS' CONFIGURATION_BUILD_DIR=$(pwd)/build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty

0 comments on commit 3c51396

Please sign in to comment.