Merge pull request #176 from CocoaPods/dependabot/bundler/rspec-3.13.0 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
- /.+-stable$/ | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- 2.3.8 | |
- 2.4.10 | |
- 2.5.8 | |
- 2.6.6 | |
- 2.7.1 | |
- 3.0.0 | |
- jruby-9.2.11.1 | |
env: | |
LANG: en_US.UTF-8 | |
CODECLIMATE_REPO_TOKEN: c98a4eeafdd6a179fd24c8553ec8445c76027f7501348b22e054e7b360fba034 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install things | |
run: | | |
gem update --system 3.2.3 | |
gem install rake | |
gem install bundler -v "~> 2.2" | |
rake bootstrap | |
- name: Run tests | |
run: bundle exec rake | |
continue-on-error: ${{ matrix.ruby == 'ruby-head' }} |