diff --git a/.github/workflows/CI_iOS.yml b/.github/workflows/CI_iOS.yml new file mode 100644 index 0000000..8d52bf9 --- /dev/null +++ b/.github/workflows/CI_iOS.yml @@ -0,0 +1,20 @@ +name: CI_iOS + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build-and-test: + + runs-on: macos-13 + + timeout-minutes: 10 + + steps: + - uses: actions/checkout@v3 + + - name: Build and test + run: xcodebuild clean build test -project WeatherApp.xcodeproj -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 14,OS=16.4" ONLY_ACTIVE_ARCH=YES \ No newline at end of file