[URL Types] Support c8yalarms URL schema to deep link into the Device… #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Verify Compilation' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [ synchronize, opened, reopened, ready_for_review ] | |
jobs: | |
check: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build Xcode project | |
run: xcodebuild -project "./AlarmApp.xcodeproj" -scheme "AlarmApp" -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | |
working-directory: ios/AlarmApp |