Update webmock 3.14.0 → 3.23.0 (minor) #231
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- '3.0' | |
- '2.7' | |
- '2.6' | |
- '2.5' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: "${{matrix.ruby}}" | |
- name: Install dependencies and run RSpec | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
bundle exec rspec | |
rubocop: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- '3.0' | |
- '2.7' | |
- '2.6' | |
- '2.5' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: "${{matrix.ruby}}" | |
- name: Install dependencies and run rubocop" | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
bundle exec rubocop |