We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2340fe commit e071993Copy full SHA for e071993
.travis.yml
@@ -1,5 +1,5 @@
1
language: objective-c
2
-osx_image: xcode11.5
+osx_image: xcode12.2
3
env:
4
global:
5
- RUBYMOTION_LICENSE=1dcac45cc434293009f74b33037bdf7361a3a1ff # Official license key for open-source projects
@@ -29,6 +29,8 @@ gemfile:
29
30
jobs:
31
include:
32
+ - stage: rubocop
33
+ script: bundle exec rubocop
34
- stage: macos
35
script: bundle exec rake spec
36
# - stage: ios
Rakefile
@@ -30,8 +30,8 @@ Motion::Project::App.setup do |app|
app.sdk_version = '13.5'
app.deployment_target = '13.5'
else
- app.sdk_version = '11.1'
- app.deployment_target = '11.1'
+ app.sdk_version = '11.0'
+ app.deployment_target = '11.0'
end
37
app.detect_dependencies = true
0 commit comments