Skip to content

feat: build action

feat: build action #12

Workflow file for this run

name: Build the SDK
permissions:
checks: write
pull-requests: write
on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
sdk: [macosx14.5]
target: [macosx13.0]
steps:
# To check the github context
- name: Checkout SDK code
uses: actions/checkout@v4
- name: Build for ${{ matrix.sdk }} target ${{ matrix.target }}
run: xcodebuild -project Countly.xcodeproj build -sdk ${{ matrix.sdk }} -target ${{ matrix.target }}