add isEdited
flag for api key setting
#46
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] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer | |
jobs: | |
test: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Show Xcode version | |
run: xcodebuild -version | |
- name: Run tests | |
run: | | |
xcodebuild \ | |
-project NASAClient.xcodeproj \ | |
-scheme NASAClient \ | |
-destination 'platform=iOS Simulator,name=iPhone 15' \ | |
-skipMacroValidation \ | |
test |