From d624434f6a675444722695187d69d55af3bbf8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CSamoilenkoVadym=E2=80=9D?= <“samoylenko.vadym@gmail.com”> Date: Sun, 2 Mar 2025 22:14:24 +0000 Subject: [PATCH] Temporarily disable GitHub Actions CI while focusing on local development --- .github/workflows/tests.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index de5e966..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: iOS Tests - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - test: - name: Build and Test - runs-on: macos-13 - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Select Xcode 14.3.1 - run: | - sudo xcode-select -s /Applications/Xcode_14.3.1.app - xcodebuild -version - - - name: Show build settings - run: xcodebuild -list -project Coinly.xcodeproj - - - name: Build and test - run: | - xcodebuild clean build test \ - -project Coinly.xcodeproj \ - -scheme "Coinly" \ - -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.4' \ - CODE_SIGN_IDENTITY="" \ - CODE_SIGNING_REQUIRED=NO \ - CODE_SIGNING_ALLOWED=NO