mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-31 06:00:09 +08:00
14 lines
456 B
Plaintext
14 lines
456 B
Plaintext
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", # 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
|