Merge pull request #1843 from steveax/maint-release-4.41.2 #555
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: | |
- pull_request | |
- push | |
env: | |
BUNDLE_WITHOUT: release | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1" | |
bundler-cache: true | |
- name: Run Rubocop | |
run: bundle exec rubocop --format github | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: "2.4" | |
- ruby: "2.5" | |
- ruby: "2.6" | |
- ruby: "2.7" | |
- ruby: "3.0" | |
- ruby: "3.1" | |
coverage: "yes" | |
env: | |
COVERAGE: ${{ matrix.coverage }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Build gem | |
run: gem build *.gemspec | |
- name: Run tests | |
run: bundle exec rake spec |