From cf27c963bd3cf702aa475e0ff2bb86e5da070955 Mon Sep 17 00:00:00 2001 From: sangeeths03 Date: Tue, 20 May 2025 15:16:11 +0530 Subject: [PATCH] added yaml --- .github/workflows/fastlane.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/fastlane.yml diff --git a/.github/workflows/fastlane.yml b/.github/workflows/fastlane.yml new file mode 100644 index 00000000..684cbe60 --- /dev/null +++ b/.github/workflows/fastlane.yml @@ -0,0 +1,30 @@ +name: iOS Fastlane Tests + +on: + workflow_dispatch: # This is the only trigger now + +jobs: + test: + runs-on: macos-14 + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Set up Xcode 16.2 + run: | + sudo xcode-select -s /Applications/Xcode_16.2.app + xcodebuild -version + + - name: List Available Simulators (for debugging) + run: xcrun simctl list devices + + - name: Setup Ruby and Bundler + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.x' + bundler-cache: true + + - name: Run Fastlane Tests + run: bundle exec fastlane test || true + working-directory: Fastlanedemoapp/