[Fix #10] Fixed an issue showing only up to 100 alarms. Reason is that the core implementation has 100 as hard maximum for the count operation. #49
Workflow file for this run
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 |