Files
runner-images-sangeeth/Fastlanedemoapp/fastlane/Fastfile
T
sangeeths03 6d7d209c7a
CodeQL / Analyze (python) (push) Has been cancelled
ripgrep Test / ripgrep-test (push) Has been cancelled
Validate JSON Schema / validate-json-schema (push) Has been cancelled
Update Fastfile
2025-05-20 15:34:44 +05:30

14 lines
463 B
Ruby

default_platform(:ios)
platform :ios do
desc "Run tests with scan"
lane :test do
scan(
scheme: "Fastlanedemoapp", # ENSURE THIS EXACTLY MATCHES YOUR PROJECT'S SCHEME NAME (case-sensitive)
device: "iPhone 16 Pro (18.2)", # The simulator we are targeting for the test
clean: true, # Cleans the build folder before building
code_coverage: true # Enables code coverage (optional, but good for CI)
)
end
end