Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.5", "2.6"]
ruby: ["2.5", "2.6", "2.7"]

runs-on: macos-latest
steps:
Expand All @@ -19,16 +19,22 @@ jobs:
# Show env
- name: Show macOS version
run: sw_vers
- name: Show ruby version
- name: Show env versions
run: |
ruby --version
bundler --version
echo $HOME

# Prepare
- name: Install bundler 1.7
run: gem install bundler -v "~> 1.7"
- name: Install bundler 2.2.14
run: gem install bundler -v "~> 2.2.14"
- name: Install ruby dependencies
run: bundle install -j4 --clean --path=vendor
run: |
bundle config --local clean 'true'
bundle config --local path '.vendor'
bundle config --local jobs 8
bundle config --local without 'system_tests'
bundle install

- name: Run test
run: bundle exec rake spec
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
mkmf.log
.DS_Store
test
.vendor
2 changes: 1 addition & 1 deletion xcode-install.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
# contains spaceship, which is used for auth and dev portal interactions
spec.add_dependency 'fastlane', '>= 2.1.0', '< 3.0.0'

spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'bundler', '>= 2.0.0', '< 3.0.0'
spec.add_development_dependency 'rake', '>= 12.3.3'
end