Skip to content

feat: build action

feat: build action #5

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, iphoneos17.5, appletvos17.5, watchos10.5]
steps:
# To check the github context
- name: Checkout SDK code
uses: actions/checkout@v4
- name: Build for ${{ matrix.sdk }}
run: xcodebuild -project Countly.xcodeproj build -sdk ${{ matrix.sdk }}