Skip to content

Commit

Permalink
Merge pull request #15 from MFB-Technologies-Inc/feature/add-ci-workflow
Browse files Browse the repository at this point in the history
Add CI workflow
  • Loading branch information
r-jarvis committed Sep 19, 2024
2 parents 96f0a00 + 5f1f1a9 commit 73854f3
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: ci

on:
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch:

jobs:
build:
runs-on: macos-14
environment: default
strategy:
matrix:
xcode: ["16.0"]
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Build package
run: xcodebuild -scheme intune-ios-sdk-Package -destination generic/platform=iOS

0 comments on commit 73854f3

Please sign in to comment.