Add support of ES_EVENT_TYPE_NOTIFY_GATEKEEPER_USER_OVERRIDE #24
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- xcode: "16.0" # Swift 6 | |
macOS: "14" | |
fail-fast: false | |
runs-on: macos-${{ matrix.macOS }} | |
name: Build with Xcode ${{ matrix.xcode }} on macOS ${{ matrix.macOS }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Xcode Select Version | |
uses: mobiledevops/xcode-select-version-action@v1 | |
with: | |
xcode-select-version: ${{ matrix.xcode }} | |
- run: xcodebuild -version | |
- name: Test macOS with Xcode ${{ matrix.xcode }} | |
run: | | |
set -e | |
set -o pipefail | |
xcodebuild test -scheme SwiftSpellbook_macOS-Package -destination "platform=macOS" SWIFT_ACTIVE_COMPILATION_CONDITIONS="SPELLBOOK_SLOW_CI_x20" | xcpretty | |