From 44b40894e43a9b73190d1a133882cf79fd102d98 Mon Sep 17 00:00:00 2001 From: Nihaal Sharma <69979447+neon443@users.noreply.github.com> Date: Mon, 26 May 2025 18:04:30 +0100 Subject: [PATCH] Delete .github directory --- .github/workflows/ios.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/ios.yml diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml deleted file mode 100644 index ffa90ef..0000000 --- a/.github/workflows/ios.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: iOS starter workflow - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - build: - name: Build and Test default scheme using any available iPhone simulator - runs-on: macos-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Build for iOS Simulator - env: - scheme: ${{ 'default' }} - platform: ${{ 'iOS Simulator' }} - run: | - xcodebuild \ - -project NearFuture.xcodeproj - -scheme NearFuture \ - -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=18.5' \ - clean build \ - CODE_SIGNING_REQUIRED=NO \ - CODE_SIGN_IDENTITY="" \ - CODE_SIGNING_ALLOWED=NO