Method: Fastlane::Actions::SpmAction.example_code
- Defined in:
- fastlane/lib/fastlane/actions/spm.rb
.example_code ⇒ Object
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 156 def self.example_code [ 'spm', 'spm( command: "build", scratch_path: "./build", configuration: "release" )', 'spm( command: "generate-xcodeproj", xcconfig: "Package.xcconfig" )', 'spm( command: "test", parallel: true )', 'spm( simulator: "iphonesimulator" )', 'spm( simulator: "macosx", simulator_arch: "arm64" )' ] end |