Use 0.2 release tag #48
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: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
Build_Test-Swift: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode version | |
run: sudo xcode-select -s '/Applications/Xcode_15.0.app/Contents/Developer' | |
- name: Swift Version | |
run: swift --version | |
- name: Build using Xcode | |
run: xcodebuild -scheme GateEngineDemos-Package -destination "platform=macOS,name=Any Mac" | |
# - name: Test using Xcode | |
# run: xcodebuild -scheme GateEngineDemos-Package -destination "platform=macOS,name=Any Mac" test |